Cyrus Mod Loader
Loading...
Searching...
No Matches
PathActionZoneEvent.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PathBehaviorTemplate::Action.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
6class PathActionZoneEvent : public PathBehaviorTemplate::Action {
7public:
8 std::string getZoneEvent() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x60);
10 }
11
12 void setZoneEvent(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x60) = val;
14 }
15
16};
Definition PathActionZoneEvent.h:6
void setZoneEvent(std::string val)
Definition PathActionZoneEvent.h:12
std::string getZoneEvent()
Definition PathActionZoneEvent.h:8