mirror of
https://github.com/Relintai/sfw.git
synced 2025-02-19 23:14:19 +01:00
18 lines
232 B
C
18 lines
232 B
C
|
#ifndef OBJECT_2D_H
|
||
|
#define OBJECT_2D_H
|
||
|
|
||
|
#include "./libs/glm/vec2.hpp"
|
||
|
|
||
|
class Object2D {
|
||
|
public:
|
||
|
Object2D();
|
||
|
virtual ~Object2D();
|
||
|
|
||
|
glm::vec2 position;
|
||
|
float rotation;
|
||
|
glm::vec2 scale;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // OBJECT_2D_h
|