Files
fishtanks/src/Components/MeshShape.h
T
Jace 4c081d0e1c Indentation style changed to Allman
Using Artistic Style (http://astyle.sourceforge.net/)
Options:
--style=allman
--indent=tab
--keep-one-line-blocks
--align-pointer=type
--align-reference=name
2014-04-11 20:59:42 +02:00

15 lines
209 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__