couch/core/Transform.h

13 lines
175 B
C
Raw Normal View History

2021-01-12 14:09:38 -06:00
#ifndef TRANSFORM_H
#define TRANSFORM_H
#include "types.h"
struct Transform {
2021-01-13 10:42:57 -06:00
Transform();
Transform(Vector3 position);
Vector3 position;
};
2021-01-12 14:09:38 -06:00
#endif /* TRANSFORM_H */