/* * Transform.h * * Created on: Nov 30, 2016 * Author: tibi */ #ifndef BASE_TRANSFORM_H_ #define BASE_TRANSFORM_H_ #include namespace farmlands { namespace base { struct Transform: public Component { float x, y; }; } /* namespace base */ } /* namespace farmlands */ #endif /* BASE_TRANSFORM_H_ */