Cyrus Mod Loader
Loading...
Searching...
No Matches
PvP5thAgeKioskBehaviorTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorTemplate.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 std::string getKioskName() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78);
10 }
11
12 void setKioskName(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
14 }
15
16 std::string getLeagueType() { // Property Generated Getter
17 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98);
18 }
19
20 void setLeagueType(std::string val) { // Property Generated Setter
21 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
22 }
23
24};
Definition BehaviorTemplate.h:13
Definition PvP5thAgeKioskBehaviorTemplate.h:6
void setLeagueType(std::string val)
Definition PvP5thAgeKioskBehaviorTemplate.h:20
std::string getLeagueType()
Definition PvP5thAgeKioskBehaviorTemplate.h:16
std::string getKioskName()
Definition PvP5thAgeKioskBehaviorTemplate.h:8
void setKioskName(std::string val)
Definition PvP5thAgeKioskBehaviorTemplate.h:12