couch/core/Transform.h
Dane Johnson e9a669eebe Rotation
2021-01-13 20:08:39 -06:00

15 lines
261 B
C

#ifndef TRANSFORM_H
#define TRANSFORM_H
#include "types.h"
struct Transform {
Transform();
Transform(Vector3 position, Vector3 rotation);
Vector3 position;
Vector3 rotation;
void Translate(cfloat x, cfloat y, cfloat z);
};
#endif /* TRANSFORM_H */