mirror of
https://github.com/ProgramSnail/snake_2024.git
synced 2025-12-14 02:18:42 +00:00
10 lines
121 B
C++
10 lines
121 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "Vec.hpp"
|
||
|
|
|
||
|
|
struct World {
|
||
|
|
float game_time = {};
|
||
|
|
Veci prev_cursor = {};
|
||
|
|
Veci cursor = {};
|
||
|
|
};
|