Cyrus Mod Loader
Loading...
Searching...
No Matches
PolymorphBattlegroundsBehavior.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorInstance.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 int getMaxTempStartingPips() { // Property Generated Getter
9 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x70);
10 }
11
12 void setMaxTempStartingPips(int val) { // Property Generated Setter
13 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
14 }
15
16 int getMaxTempStartingPowerPips() { // Property Generated Getter
17 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x74);
18 }
19
20 void setMaxTempStartingPowerPips(int val) { // Property Generated Setter
21 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x74) = val;
22 }
23
24};
Definition BehaviorInstance.h:5
Definition PolymorphBattlegroundsBehavior.h:6
void setMaxTempStartingPowerPips(int val)
Definition PolymorphBattlegroundsBehavior.h:20
void setMaxTempStartingPips(int val)
Definition PolymorphBattlegroundsBehavior.h:12
int getMaxTempStartingPowerPips()
Definition PolymorphBattlegroundsBehavior.h:16
int getMaxTempStartingPips()
Definition PolymorphBattlegroundsBehavior.h:8