couch/core/Transform.cpp

10 lines
152 B
C++
Raw Normal View History

2021-01-13 10:42:57 -06:00
#include "Transform.h"
Transform::Transform() {
position = Vector3(0.0f);
}
Transform::Transform(Vector3 position) {
this->position = position;
}