Player.h 135 B

1234567891011
  1. #ifndef PLAYER_H
  2. #define PLAYER_H
  3. #include "math/Vector.h"
  4. struct Player {
  5. Vector3 lastPosition;
  6. Vector3 position;
  7. };
  8. #endif