mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
18 lines
212 B
C++
18 lines
212 B
C++
#ifndef OBJECT_2D_H
|
|
#define OBJECT_2D_H
|
|
|
|
#include "./glm/vec2.hpp"
|
|
|
|
class Object2D {
|
|
public:
|
|
|
|
Object2D();
|
|
virtual ~Object2D();
|
|
|
|
glm::vec2 position;
|
|
float rotation;
|
|
glm::vec2 scale;
|
|
};
|
|
|
|
#endif
|