farmlands/src/base/Transform.h

25 lines
339 B
C
Raw Normal View History

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