pacman/lib/Position.hpp
Corentin Jabot 164db664ef Use VCPKG and reorganization
* Remove non-pacman exercises.
* Use vcpkg instead of conan ( make vcpkg a submodule)
* Merge the readmem these will need to be improve later
2021-05-10 14:58:00 +02:00

12 lines
146 B
C++

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