Cyrus Mod Loader
Loading...
Searching...
No Matches
PolymorphBattlegroundsBehaviorTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BattleCardPurchaseInfo.h>
4#include <Cyrus/Classes/BehaviorTemplate.h>
5#include <Cyrus/Classes/PolymorphRatingInfo.h>
6#include <Cyrus/Classes/PropertyClass.h>
7
9public:
10 int getMaxTempStartingPips() { // Property Generated Getter
11 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x78);
12 }
13
14 void setMaxTempStartingPips(int val) { // Property Generated Setter
15 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
16 }
17
18 int getMaxTempStartingPowerPips() { // Property Generated Getter
19 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x7C);
20 }
21
22 void setMaxTempStartingPowerPips(int val) { // Property Generated Setter
23 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x7C) = val;
24 }
25
26 int getMaxHandSize() { // Property Generated Getter
27 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x80);
28 }
29
30 void setMaxHandSize(int val) { // Property Generated Setter
31 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
32 }
33
34 int getPointValue() { // Property Generated Getter
35 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x84);
36 }
37
38 void setPointValue(int val) { // Property Generated Setter
39 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x84) = val;
40 }
41
42 List<SharedPointer<BattleCardPurchaseInfo>> * getBattleCardsForSale() { // Property Generated Getter
43 return reinterpret_cast<List<SharedPointer<BattleCardPurchaseInfo>> *>(reinterpret_cast<uintptr_t>(this) + 0x88);
44 }
45
46 void setBattleCardsForSale(List<SharedPointer<BattleCardPurchaseInfo>> * val) { // Property Generated Setter
47 *reinterpret_cast<List<SharedPointer<BattleCardPurchaseInfo>> **>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
48 }
49
50 Vector<SharedPointer<PolymorphRatingInfo>> * getRatingInfo() { // Property Generated Getter
51 return reinterpret_cast<Vector<SharedPointer<PolymorphRatingInfo>> *>(reinterpret_cast<uintptr_t>(this) + 0x98);
52 }
53
54 void setRatingInfo(Vector<SharedPointer<PolymorphRatingInfo>> * val) { // Property Generated Setter
55 *reinterpret_cast<Vector<SharedPointer<PolymorphRatingInfo>> **>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
56 }
57
58 List<Ingredient*> * getLevelUpIngredients() { // Property Generated Getter
59 return reinterpret_cast<List<Ingredient*> *>(reinterpret_cast<uintptr_t>(this) + 0xB0);
60 }
61
62 void setLevelUpIngredients(List<Ingredient*> * val) { // Property Generated Setter
63 *reinterpret_cast<List<Ingredient*> **>(reinterpret_cast<uintptr_t>(this) + 0xB0) = val;
64 }
65
66 int getLevelUpCost() { // Property Generated Getter
67 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0xC0);
68 }
69
70 void setLevelUpCost(int val) { // Property Generated Setter
71 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0xC0) = val;
72 }
73
74};
Definition BehaviorTemplate.h:13
Definition PolymorphBattlegroundsBehaviorTemplate.h:8
int getLevelUpCost()
Definition PolymorphBattlegroundsBehaviorTemplate.h:66
int getPointValue()
Definition PolymorphBattlegroundsBehaviorTemplate.h:34
void setRatingInfo(Vector< SharedPointer< PolymorphRatingInfo > > *val)
Definition PolymorphBattlegroundsBehaviorTemplate.h:54
void setMaxTempStartingPowerPips(int val)
Definition PolymorphBattlegroundsBehaviorTemplate.h:22
void setBattleCardsForSale(List< SharedPointer< BattleCardPurchaseInfo > > *val)
Definition PolymorphBattlegroundsBehaviorTemplate.h:46
void setPointValue(int val)
Definition PolymorphBattlegroundsBehaviorTemplate.h:38
void setMaxTempStartingPips(int val)
Definition PolymorphBattlegroundsBehaviorTemplate.h:14
int getMaxTempStartingPips()
Definition PolymorphBattlegroundsBehaviorTemplate.h:10
void setLevelUpIngredients(List< Ingredient * > *val)
Definition PolymorphBattlegroundsBehaviorTemplate.h:62
void setMaxHandSize(int val)
Definition PolymorphBattlegroundsBehaviorTemplate.h:30
Vector< SharedPointer< PolymorphRatingInfo > > * getRatingInfo()
Definition PolymorphBattlegroundsBehaviorTemplate.h:50
int getMaxHandSize()
Definition PolymorphBattlegroundsBehaviorTemplate.h:26
int getMaxTempStartingPowerPips()
Definition PolymorphBattlegroundsBehaviorTemplate.h:18
List< Ingredient * > * getLevelUpIngredients()
Definition PolymorphBattlegroundsBehaviorTemplate.h:58
void setLevelUpCost(int val)
Definition PolymorphBattlegroundsBehaviorTemplate.h:70
List< SharedPointer< BattleCardPurchaseInfo > > * getBattleCardsForSale()
Definition PolymorphBattlegroundsBehaviorTemplate.h:42