Set the value as a double

This commit is contained in:
Patricia Aas 2021-10-11 12:16:28 +02:00
parent 60774761f5
commit 8f396d0545

View file

@ -7,8 +7,8 @@
namespace pacman {
struct Position {
double x = 0;
double y = 0;
double x = 0.0;
double y = 0.0;
};
struct GridPosition {