#ifndef PLAYER_H #define PLAYER_H #include "math/Vector.h" struct Player { Vector3 lastPosition; Vector3 position; }; #endif