Descent3/lib/IMeshHandle.h

22 lines
287 B
C
Raw Normal View History

2024-04-16 03:43:29 +00:00
#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