11 lines
129 B
C
11 lines
129 B
C
|
#ifndef TRANSFORM_H
|
||
|
#define TRANSFORM_H
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
struct Transform {
|
||
|
Position position;
|
||
|
}
|
||
|
|
||
|
#endif /* TRANSFORM_H */
|