mirror of
https://github.com/ProgramSnail/snake_2024.git
synced 2025-12-10 00:18:44 +00:00
8 lines
83 B
C++
8 lines
83 B
C++
#pragma once
|
|
|
|
#include "Vec.hpp"
|
|
|
|
struct Player {
|
|
Vecf pos;
|
|
Vecf direction;
|
|
};
|