Files
fishtanks/src/Components/WheelPair.h
T
2014-05-30 01:04:09 +02:00

20 lines
322 B
C++

#ifndef Components_WheelPair_h__
#define Components_WheelPair_h__
#include "Component.h"
namespace Components
{
struct WheelPair : Component
{
EntityID FakeWheelFront;
EntityID FakeWheelBack;
virtual WheelPair* Clone() const override { return new WheelPair(*this); }
};
}
#endif // Components_WheelPair_h__