Viewports fixed. Damage HUD. Free steering fixed.

This commit is contained in:
2014-05-28 20:22:38 +02:00
parent f813f8d2ca
commit cc42b94000
18 changed files with 744 additions and 1132 deletions
+2 -2
View File
@@ -9,9 +9,9 @@ namespace Components
struct Health : Component
{
Health()
: health(1.0f){ }
: Amount(1.0f) { }
float health;
float Amount;
virtual Health* Clone() const override { return new Health(*this); }
};