initial game

This commit is contained in:
programsnail 2024-07-22 21:22:52 +03:00
parent 4570d6e593
commit adabb50a9e
10 changed files with 200 additions and 132 deletions

9
include/World.hpp Normal file
View file

@ -0,0 +1,9 @@
#pragma once
#include "Vec.hpp"
struct World {
float game_time = {};
Veci prev_cursor = {};
Veci cursor = {};
};