godot-cpp-utils
A collection of utility classes, functions and macros for use with Godot and GDExtension.
Loading...
Searching...
No Matches
game_state.hpp
1#ifndef GAME_STATE_HPP
2#define GAME_STATE_HPP
3
4#include <godot_cpp/classes/resource.hpp>
5
6namespace utils {
11class GameState : public godot::Resource {
12 GDCLASS(GameState, godot::Resource);
13 static void _bind_methods();
14public:
15};
16}
17
18#endif // !GAME_STATE_HPP
Parent class for saved game state.
Definition game_state.hpp:11