mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 03:58:59 +00:00
22 lines
287 B
C
22 lines
287 B
C
|
#ifndef __IMESH_HANDLE_H__
|
||
|
#define __IMESH_HANDLE_H__
|
||
|
|
||
|
#include <boost/config.hpp>
|
||
|
#include <boost/smart_ptr.hpp>
|
||
|
|
||
|
namespace RZ
|
||
|
{
|
||
|
namespace Renderer
|
||
|
{
|
||
|
class IMeshHandle
|
||
|
{
|
||
|
public:
|
||
|
virtual ~IMeshHandle(){}
|
||
|
};
|
||
|
|
||
|
typedef boost::shared_ptr<IMeshHandle> MeshHandle;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|