mirror of
https://github.com/Relintai/sfw.git
synced 2025-02-19 23:14:19 +01:00
12 lines
156 B
C++
12 lines
156 B
C++
|
#include "object_2d.h"
|
||
|
|
||
|
|
||
|
Object2D::Object2D() {
|
||
|
position = glm::vec2(0, 0);
|
||
|
rotation = 0;
|
||
|
scale = glm::vec2(1, 1);
|
||
|
}
|
||
|
|
||
|
Object2D::~Object2D() {
|
||
|
}
|