new/include/state.hpp
2025-12-18 13:44:38 -06:00

11 lines
130 B
C++

#pragma once
#include "math/float_types.hpp"
struct state {
mat4x4 world_to_view;
int button[16];
};
extern state g_state;