2024-03-13 15:08:37 +00:00
|
|
|
#ifndef GAME_STATE_HPP
|
|
|
|
#define GAME_STATE_HPP
|
|
|
|
|
2024-05-28 14:28:36 +00:00
|
|
|
#include <godot_cpp/classes/resource.hpp>
|
|
|
|
|
|
|
|
namespace utils {
|
|
|
|
class GameState : public godot::Resource {
|
|
|
|
GDCLASS(GameState, godot::Resource);
|
2024-03-13 15:08:37 +00:00
|
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // !GAME_STATE_HPP
|