No ship shadow

This commit is contained in:
2014-03-14 04:35:13 +01:00
parent 829789d1ad
commit 982fce4a72
5 changed files with 13 additions and 9 deletions
+2 -1
View File
@@ -11,10 +11,11 @@ namespace Components
struct Model : Component
{
Model() : Visible(true) { }
Model() : Visible(true), ShadowCaster(true) { }
std::string ModelFile;
Color Color;
bool Visible;
bool ShadowCaster;
};
}