room101/OBSOLETE/SPACE.H

19 lines
235 B
C

#ifndef __SPACE_H
#define __SPACE_H
#include "motion.h"
typedef struct
{
int tick;
Motion pos;
Motion rot;
Motion _pos;
Motion _rot;
} Movement;
void MovementUpdate(Movement*);
#endif