Files
2014-03-14 04:35:13 +01:00

22 lines
331 B
C++

#ifndef Components_Model_h__
#define Components_Model_h__
#include <string>
#include "Component.h"
#include "Color.h"
namespace Components
{
struct Model : Component
{
Model() : Visible(true), ShadowCaster(true) { }
std::string ModelFile;
Color Color;
bool Visible;
bool ShadowCaster;
};
}
#endif // !Components_Model_h__