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