pacman/lib/Position.hpp

12 lines
142 B
C++
Raw Normal View History

2020-11-27 13:10:09 +00:00
#ifndef PACMAN_POSITION_H
#define PACMAN_POSITION_H
#include <cmath>
2020-11-27 13:10:09 +00:00
struct Position {
2021-05-10 13:14:38 +00:00
float x;
float y;
2020-11-27 13:10:09 +00:00
};
#endif //PACMAN_POSITION_H