15 lines
213 B
C++
Executable File
15 lines
213 B
C++
Executable File
#ifndef Components_MeshShape_h__
|
|
#define Components_MeshShape_h__
|
|
|
|
#include "Component.h"
|
|
|
|
namespace Components
|
|
{
|
|
struct MeshShape : Component
|
|
{
|
|
std::string Filename;
|
|
};
|
|
}
|
|
|
|
#endif // Components_MeshShape_h__
|