snake_2024/include/Player.hpp

12 lines
149 B
C++
Raw Normal View History

#pragma once
2024-07-22 21:22:52 +03:00
#include "Vec.hpp"
struct Player {
Vecf pos;
Vecf direction;
double speed;
double move_interval;
double move_time_delta;
};