Cyrus Mod Loader
Loading...
Searching...
No Matches
HelpChatElement.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 std::string getLabelKey() { // Property Generated Getter
8 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setLabelKey(std::string val) { // Property Generated Setter
12 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 gid getTipID() { // Property Generated Getter
16 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x68);
17 }
18
19 void setTipID(gid val) { // Property Generated Setter
20 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
21 }
22
23 List<HelpChatElement*> * getChildren() { // Property Generated Getter
24 return reinterpret_cast<List<HelpChatElement*> *>(reinterpret_cast<uintptr_t>(this) + 0x70);
25 }
26
27 void setChildren(List<HelpChatElement*> * val) { // Property Generated Setter
28 *reinterpret_cast<List<HelpChatElement*> **>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
29 }
30
31};
Definition HelpChatElement.h:5
List< HelpChatElement * > * getChildren()
Definition HelpChatElement.h:23
gid getTipID()
Definition HelpChatElement.h:15
void setLabelKey(std::string val)
Definition HelpChatElement.h:11
void setTipID(gid val)
Definition HelpChatElement.h:19
void setChildren(List< HelpChatElement * > *val)
Definition HelpChatElement.h:27
std::string getLabelKey()
Definition HelpChatElement.h:7
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86