Descent3/lib/IMeshHandle.h
2024-04-15 21:43:29 -06:00

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