Cyrus Mod Loader
Loading...
Searching...
No Matches
TreasureShopOffering.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 std::string getTreasureShopTitle() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setTreasureShopTitle(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 List<std::string> getTreasureSpellNames() { // Property Generated Getter
16 return *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x68);
17 }
18
19 void setTreasureSpellNames(List<std::string> val) { // Property Generated Setter
20 *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
21 }
22
23 bool getCrownShop() { // Property Generated Getter
24 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x78);
25 }
26
27 void setCrownShop(bool val) { // Property Generated Setter
28 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
29 }
30
31 bool getPvpCurrencyShop() { // Property Generated Getter
32 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x79);
33 }
34
35 void setPvpCurrencyShop(bool val) { // Property Generated Setter
36 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x79) = val;
37 }
38
39 bool getPvpTourneyCurrencyShop() { // Property Generated Getter
40 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x7A);
41 }
42
43 void setPvpTourneyCurrencyShop(bool val) { // Property Generated Setter
44 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x7A) = val;
45 }
46
47};
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition TreasureShopOffering.h:5
std::string getTreasureShopTitle()
Definition TreasureShopOffering.h:7
List< std::string > getTreasureSpellNames()
Definition TreasureShopOffering.h:15
void setTreasureSpellNames(List< std::string > val)
Definition TreasureShopOffering.h:19
void setCrownShop(bool val)
Definition TreasureShopOffering.h:27
bool getCrownShop()
Definition TreasureShopOffering.h:23
bool getPvpTourneyCurrencyShop()
Definition TreasureShopOffering.h:39
void setPvpCurrencyShop(bool val)
Definition TreasureShopOffering.h:35
bool getPvpCurrencyShop()
Definition TreasureShopOffering.h:31
void setPvpTourneyCurrencyShop(bool val)
Definition TreasureShopOffering.h:43
void setTreasureShopTitle(std::string val)
Definition TreasureShopOffering.h:11