4c081d0e1c
Using Artistic Style (http://astyle.sourceforge.net/) Options: --style=allman --indent=tab --keep-one-line-blocks --align-pointer=type --align-reference=name
15 lines
209 B
C++
Executable File
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__
|