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