mirror of
https://github.com/ProgramSnail/snake_2024.git
synced 2025-12-07 15:08:44 +00:00
11 lines
149 B
C++
11 lines
149 B
C++
#pragma once
|
|
|
|
#include "Vec.hpp"
|
|
|
|
struct Player {
|
|
Vecf pos;
|
|
Vecf direction;
|
|
double speed;
|
|
double move_interval;
|
|
double move_time_delta;
|
|
};
|