Cyrus Mod Loader
Loading...
Searching...
No Matches
AvatarItemInfo.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/AvatarItemInfoBase.h>
4#include <Cyrus/Classes/AvatarOption.h>
5#include <Cyrus/Classes/AvatarTextureOption.h>
6#include <Cyrus/Classes/PropertyClass.h>
7
9public:
10 std::string getPartName() { // Property Generated Getter
11 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
12 }
13
14 void setPartName(std::string val) { // Property Generated Setter
15 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
16 }
17
18 std::string getSlotName() { // Property Generated Getter
19 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
20 }
21
22 void setSlotName(std::string val) { // Property Generated Setter
23 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
24 }
25
26 List<std::string> getFlags() { // Property Generated Getter
27 return *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x90);
28 }
29
30 void setFlags(List<std::string> val) { // Property Generated Setter
31 *reinterpret_cast<List<std::string>*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
32 }
33
34 List<SharedPointer<AvatarOption>> * getOptions() { // Property Generated Getter
35 return reinterpret_cast<List<SharedPointer<AvatarOption>> *>(reinterpret_cast<uintptr_t>(this) + 0xA0);
36 }
37
38 void setOptions(List<SharedPointer<AvatarOption>> * val) { // Property Generated Setter
39 *reinterpret_cast<List<SharedPointer<AvatarOption>> **>(reinterpret_cast<uintptr_t>(this) + 0xA0) = val;
40 }
41
42 List<SharedPointer<AvatarTextureOption>> * getTextureOptions() { // Property Generated Getter
43 return reinterpret_cast<List<SharedPointer<AvatarTextureOption>> *>(reinterpret_cast<uintptr_t>(this) + 0xB0);
44 }
45
46 void setTextureOptions(List<SharedPointer<AvatarTextureOption>> * val) { // Property Generated Setter
47 *reinterpret_cast<List<SharedPointer<AvatarTextureOption>> **>(reinterpret_cast<uintptr_t>(this) + 0xB0) = val;
48 }
49
50 SharedPointer<AvatarOption> * getDefaultOption() { // Property Generated Getter
51 return reinterpret_cast<SharedPointer<AvatarOption> *>(reinterpret_cast<uintptr_t>(this) + 0xC0);
52 }
53
54 void setDefaultOption(SharedPointer<AvatarOption> * val) { // Property Generated Setter
55 *reinterpret_cast<SharedPointer<AvatarOption> **>(reinterpret_cast<uintptr_t>(this) + 0xC0) = val;
56 }
57
58 SharedPointer<AvatarTextureOption> * getDefaultTextureOption() { // Property Generated Getter
59 return reinterpret_cast<SharedPointer<AvatarTextureOption> *>(reinterpret_cast<uintptr_t>(this) + 0xD0);
60 }
61
62 void setDefaultTextureOption(SharedPointer<AvatarTextureOption> * val) { // Property Generated Setter
63 *reinterpret_cast<SharedPointer<AvatarTextureOption> **>(reinterpret_cast<uintptr_t>(this) + 0xD0) = val;
64 }
65
66};
Definition AvatarItemInfoBase.h:5
Definition AvatarItemInfo.h:8
List< std::string > getFlags()
Definition AvatarItemInfo.h:26
List< SharedPointer< AvatarTextureOption > > * getTextureOptions()
Definition AvatarItemInfo.h:42
void setOptions(List< SharedPointer< AvatarOption > > *val)
Definition AvatarItemInfo.h:38
void setDefaultOption(SharedPointer< AvatarOption > *val)
Definition AvatarItemInfo.h:54
void setTextureOptions(List< SharedPointer< AvatarTextureOption > > *val)
Definition AvatarItemInfo.h:46
List< SharedPointer< AvatarOption > > * getOptions()
Definition AvatarItemInfo.h:34
std::string getSlotName()
Definition AvatarItemInfo.h:18
std::string getPartName()
Definition AvatarItemInfo.h:10
void setSlotName(std::string val)
Definition AvatarItemInfo.h:22
SharedPointer< AvatarOption > * getDefaultOption()
Definition AvatarItemInfo.h:50
void setDefaultTextureOption(SharedPointer< AvatarTextureOption > *val)
Definition AvatarItemInfo.h:62
void setFlags(List< std::string > val)
Definition AvatarItemInfo.h:30
SharedPointer< AvatarTextureOption > * getDefaultTextureOption()
Definition AvatarItemInfo.h:58
void setPartName(std::string val)
Definition AvatarItemInfo.h:14