Files
escape-the-dawn/Escape-the-Dawn/Components/Model.h
T
ViktorLjung 1cf158b3a2 RenderSystem
2014-03-09 21:07:51 +01:00

19 lines
247 B
C++

#ifndef Components_Model_h__
#define Components_Model_h__
#include <string>
#include "Component.h"
#include "Color.h"
namespace Components
{
struct Model : Component
{
const char* ModelFile;
Color Color;
};
}
#endif // !Components_Model_h__