13 lines
175 B
C
13 lines
175 B
C
#ifndef TRANSFORM_H
|
|
#define TRANSFORM_H
|
|
|
|
#include "types.h"
|
|
|
|
struct Transform {
|
|
Transform();
|
|
Transform(Vector3 position);
|
|
Vector3 position;
|
|
};
|
|
|
|
#endif /* TRANSFORM_H */
|