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();
|
2021-01-13 20:08:39 -06:00
|
|
|
Transform(Vector3 position, Vector3 rotation);
|
2021-01-13 10:42:57 -06:00
|
|
|
Vector3 position;
|
2021-01-13 20:08:39 -06:00
|
|
|
Vector3 rotation;
|
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 */
|