Cyrus Mod Loader
Loading...
Searching...
No Matches
Group.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/GroupMember.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
6class Group : public PropertyClass {
7public:
8 gid getGroupID() { // Property Generated Getter
9 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setGroupID(gid val) { // Property Generated Setter
13 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 gid getChannelID() { // Property Generated Getter
17 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x50);
18 }
19
20 void setChannelID(gid val) { // Property Generated Setter
21 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
22 }
23
24 List<SharedPointer<GroupMember>> * getMemberList() { // Property Generated Getter
25 return reinterpret_cast<List<SharedPointer<GroupMember>> *>(reinterpret_cast<uintptr_t>(this) + 0x58);
26 }
27
28 void setMemberList(List<SharedPointer<GroupMember>> * val) { // Property Generated Setter
29 *reinterpret_cast<List<SharedPointer<GroupMember>> **>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
30 }
31
32 unsigned int getNMaxSize() { // Property Generated Getter
33 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x68);
34 }
35
36 void setNMaxSize(unsigned int val) { // Property Generated Setter
37 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
38 }
39
40 bool getFromAdventureParty() { // Property Generated Getter
41 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x80);
42 }
43
44 void setFromAdventureParty(bool val) { // Property Generated Setter
45 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
46 }
47
48 gid getLeaderGID() { // Property Generated Getter
49 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x88);
50 }
51
52 void setLeaderGID(gid val) { // Property Generated Setter
53 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
54 }
55
56 gid getQuestGID() { // Property Generated Getter
57 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x90);
58 }
59
60 void setQuestGID(gid val) { // Property Generated Setter
61 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
62 }
63
64 gid getGoalGID() { // Property Generated Getter
65 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x98);
66 }
67
68 void setGoalGID(gid val) { // Property Generated Setter
69 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
70 }
71
72};
Definition Group.h:6
bool getFromAdventureParty()
Definition Group.h:40
void setChannelID(gid val)
Definition Group.h:20
gid getQuestGID()
Definition Group.h:56
void setGoalGID(gid val)
Definition Group.h:68
List< SharedPointer< GroupMember > > * getMemberList()
Definition Group.h:24
void setLeaderGID(gid val)
Definition Group.h:52
gid getChannelID()
Definition Group.h:16
void setNMaxSize(unsigned int val)
Definition Group.h:36
unsigned int getNMaxSize()
Definition Group.h:32
gid getLeaderGID()
Definition Group.h:48
void setQuestGID(gid val)
Definition Group.h:60
void setGroupID(gid val)
Definition Group.h:12
void setMemberList(List< SharedPointer< GroupMember > > *val)
Definition Group.h:28
void setFromAdventureParty(bool val)
Definition Group.h:44
gid getGroupID()
Definition Group.h:8
gid getGoalGID()
Definition Group.h:64
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86