WIP Collision meshes

This commit is contained in:
2014-04-07 23:36:06 +02:00
parent 4a6f0cad32
commit 28c7ab4b3e
6 changed files with 48 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef Components_MeshShape_h__
#define Components_MeshShape_h__
#include "Component.h"
namespace Components
{
struct MeshShape : Component
{
std::string Filename;
};
}
#endif // Components_MeshShape_h__
+14
View File
@@ -0,0 +1,14 @@
#ifndef Components_StaticMeshShape_h__
#define Components_StaticMeshShape_h__
#include "Component.h"
namespace Components
{
struct StaticMeshShape : Component
{
std::string Filename;
};
}
#endif // Components_StaticMeshShape_h__