pacman/lib/Position.hpp
2021-05-10 15:14:38 +02:00

12 lines
142 B
C++

#ifndef PACMAN_POSITION_H
#define PACMAN_POSITION_H
#include <cmath>
struct Position {
float x;
float y;
};
#endif //PACMAN_POSITION_H