Files
fishtanks/src/Components/MeshShape.h
T
2014-04-27 08:08:00 +02:00

17 lines
233 B
C++

#ifndef Components_MeshShape_h__
#define Components_MeshShape_h__
#include <string>
#include "Component.h"
namespace Components
{
struct MeshShape : Component
{
std::string ResourceName;
};
}
#endif // !Components_MeshShape_h__