Files
fishtanks/src/Components/MeshShape.h
T
Stiffly 457ee84903 Merge remote-tracking branch 'origin/havok' into particles
Conflicts:
	src/Components/Vehicle.h
2014-05-12 15:43:41 +02:00

19 lines
310 B
C++

#ifndef Components_MeshShape_h__
#define Components_MeshShape_h__
#include <string>
#include "Component.h"
namespace Components
{
struct MeshShape : Component
{
std::string ResourceName;
virtual MeshShape* Clone() const override { return new MeshShape(*this); }
};
}
#endif // !Components_MeshShape_h__