godot-cpp-utils/game_state.hpp

15 lines
265 B
C++
Raw Normal View History

#ifndef GAME_STATE_HPP
#define GAME_STATE_HPP
#include <godot_cpp/classes/resource.hpp>
namespace utils {
class GameState : public godot::Resource {
GDCLASS(GameState, godot::Resource);
static void _bind_methods();
public:
};
}
#endif // !GAME_STATE_HPP