mirror of
https://github.com/ProgramSnail/snake_2024.git
synced 2025-12-13 18:08:43 +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;
|
|
};
|