pacman/pacman/src/Position.h

12 lines
147 B
C

#ifndef PACMAN_POSITION_H
#define PACMAN_POSITION_H
#include <math.h>
struct Position {
float_t x;
float_t y;
};
#endif //PACMAN_POSITION_H