feat: defined map region

This commit is contained in:
Sara 2025-08-14 11:51:22 +02:00
parent 569ac1f712
commit bd5320f7a1
3 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,7 @@
#include "map_region.h"
String const MapRegion::sig_phase_changed{ "phase_changed" };
void MapRegion::_bind_methods() {
ADD_SIGNAL(MethodInfo(sig_phase_changed, PropertyInfo(Variant::BOOL, "hunt_phase")));
}