couch/core/Transform.h

14 lines
223 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-13 16:47:16 -06:00
void Translate(cfloat x, cfloat y, cfloat z);
2021-01-13 10:42:57 -06:00
};
2021-01-12 14:09:38 -06:00
#endif /* TRANSFORM_H */