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