#ifndef LOCATABLE_H_39E526CA #define LOCATABLE_H_39E526CA #include "component.h" class TransformableComponent : public Component { public: /** * The coordinates of the entity. */ double x; double y; /** * The size of the entity. */ int w; int h; /** * For prototypes, the original coordinates and size of the entity. * * @managed_by RealizingSystem */ double origX; double origY; int origW; int origH; }; #endif /* end of include guard: LOCATABLE_H_39E526CA */