Cyrus Mod Loader
Loading...
Searching...
No Matches
GuildChatInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 gid getCharacterGID() { // Property Generated Getter
8 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setCharacterGID(gid val) { // Property Generated Setter
12 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 std::string getPackedName() { // Property Generated Getter
16 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50);
17 }
18
19 void setPackedName(std::string val) { // Property Generated Setter
20 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
21 }
22
23 std::string getMessage() { // Property Generated Getter
24 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70);
25 }
26
27 void setMessage(std::string val) { // Property Generated Setter
28 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
29 }
30
31 unsigned int getMessageID() { // Property Generated Getter
32 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x90);
33 }
34
35 void setMessageID(unsigned int val) { // Property Generated Setter
36 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
37 }
38
39 unsigned char getSendFilter() { // Property Generated Getter
40 return *reinterpret_cast<unsigned char*>(reinterpret_cast<uintptr_t>(this) + 0x94);
41 }
42
43 void setSendFilter(unsigned char val) { // Property Generated Setter
44 *reinterpret_cast<unsigned char*>(reinterpret_cast<uintptr_t>(this) + 0x94) = val;
45 }
46
47 unsigned int getMessageTime() { // Property Generated Getter
48 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x98);
49 }
50
51 void setMessageTime(unsigned int val) { // Property Generated Setter
52 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
53 }
54
55};
Definition GuildChatInfo.h:5
void setMessageTime(unsigned int val)
Definition GuildChatInfo.h:51
void setMessage(std::string val)
Definition GuildChatInfo.h:27
std::string getPackedName()
Definition GuildChatInfo.h:15
void setSendFilter(unsigned char val)
Definition GuildChatInfo.h:43
void setMessageID(unsigned int val)
Definition GuildChatInfo.h:35
gid getCharacterGID()
Definition GuildChatInfo.h:7
unsigned int getMessageID()
Definition GuildChatInfo.h:31
unsigned char getSendFilter()
Definition GuildChatInfo.h:39
std::string getMessage()
Definition GuildChatInfo.h:23
void setPackedName(std::string val)
Definition GuildChatInfo.h:19
void setCharacterGID(gid val)
Definition GuildChatInfo.h:11
unsigned int getMessageTime()
Definition GuildChatInfo.h:47
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86