Cyrus Mod Loader
Loading...
Searching...
No Matches
BattleCardShopOffering.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BattleCardPurchaseInfo.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/SpellData.h>
6
8public:
9 List<SharedPointer<BattleCardPurchaseInfo>> * getBattleCardsForSale() { // Property Generated Getter
10 return reinterpret_cast<List<SharedPointer<BattleCardPurchaseInfo>> *>(reinterpret_cast<uintptr_t>(this) + 0x48);
11 }
12
13 void setBattleCardsForSale(List<SharedPointer<BattleCardPurchaseInfo>> * val) { // Property Generated Setter
14 *reinterpret_cast<List<SharedPointer<BattleCardPurchaseInfo>> **>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
15 }
16
17 List<SharedPointer<SpellData>> * getGivenSpells() { // Property Generated Getter
18 return reinterpret_cast<List<SharedPointer<SpellData>> *>(reinterpret_cast<uintptr_t>(this) + 0x58);
19 }
20
21 void setGivenSpells(List<SharedPointer<SpellData>> * val) { // Property Generated Setter
22 *reinterpret_cast<List<SharedPointer<SpellData>> **>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
23 }
24
25 int getMaxTotalBattleCards() { // Property Generated Getter
26 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x68);
27 }
28
29 void setMaxTotalBattleCards(int val) { // Property Generated Setter
30 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
31 }
32
33 List<std::string> getNextLevelBattleCards() { // Property Generated Getter
34 return *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x70);
35 }
36
37 void setNextLevelBattleCards(List<std::string> val) { // Property Generated Setter
38 *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
39 }
40
41};
Definition BattleCardShopOffering.h:7
List< std::string > getNextLevelBattleCards()
Definition BattleCardShopOffering.h:33
void setMaxTotalBattleCards(int val)
Definition BattleCardShopOffering.h:29
List< SharedPointer< BattleCardPurchaseInfo > > * getBattleCardsForSale()
Definition BattleCardShopOffering.h:9
void setNextLevelBattleCards(List< std::string > val)
Definition BattleCardShopOffering.h:37
void setGivenSpells(List< SharedPointer< SpellData > > *val)
Definition BattleCardShopOffering.h:21
void setBattleCardsForSale(List< SharedPointer< BattleCardPurchaseInfo > > *val)
Definition BattleCardShopOffering.h:13
int getMaxTotalBattleCards()
Definition BattleCardShopOffering.h:25
List< SharedPointer< SpellData > > * getGivenSpells()
Definition BattleCardShopOffering.h:17
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86