Cyrus Mod Loader
Loading...
Searching...
No Matches
PathBehaviorTemplate__Action.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 gid getNPathID() { // Property Generated Getter
8 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setNPathID(gid val) { // Property Generated Setter
12 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 int getNNodeID() { // Property Generated Getter
16 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x50);
17 }
18
19 void setNNodeID(int val) { // Property Generated Setter
20 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
21 }
22
23 int getNPriority() { // Property Generated Getter
24 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x54);
25 }
26
27 void setNPriority(int val) { // Property Generated Setter
28 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x54) = val;
29 }
30
31 int getNChance() { // Property Generated Getter
32 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58);
33 }
34
35 void setNChance(int val) { // Property Generated Setter
36 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
37 }
38
39};
Definition PathBehaviorTemplate__Action.h:5
int getNChance()
Definition PathBehaviorTemplate__Action.h:31
int getNNodeID()
Definition PathBehaviorTemplate__Action.h:15
void setNPathID(gid val)
Definition PathBehaviorTemplate__Action.h:11
gid getNPathID()
Definition PathBehaviorTemplate__Action.h:7
int getNPriority()
Definition PathBehaviorTemplate__Action.h:23
void setNPriority(int val)
Definition PathBehaviorTemplate__Action.h:27
void setNNodeID(int val)
Definition PathBehaviorTemplate__Action.h:19
void setNChance(int val)
Definition PathBehaviorTemplate__Action.h:35
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86