Garage working, ready for vehicle swap implementation

This commit is contained in:
ViktorLjung
2014-06-01 03:07:47 +02:00
parent a142d368a7
commit d64be64ba4
18 changed files with 711 additions and 276 deletions
+24
View File
@@ -0,0 +1,24 @@
#ifndef TriggerRotate_h__
#define TriggerRotate_h__
#include "Component.h"
namespace Components
{
struct TriggerRotate : Component
{
TriggerRotate()
: Queue(false)
, Swap(true)
{ }
EntityID Entity;
bool Queue;
bool Swap;
virtual TriggerRotate* Clone() const override { return new TriggerRotate(*this); }
};
}
#endif // TriggerRotate_h__