Cyrus Mod Loader
Loading...
Searching...
No Matches
BoosterPackSpaceHelper.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BoosterPackData.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 List<SharedPointer<BoosterPackData>> * getAllPacks() { // Property Generated Getter
9 return reinterpret_cast<List<SharedPointer<BoosterPackData>> *>(reinterpret_cast<uintptr_t>(this) + 0x50);
10 }
11
12 void setAllPacks(List<SharedPointer<BoosterPackData>> * val) { // Property Generated Setter
13 *reinterpret_cast<List<SharedPointer<BoosterPackData>> **>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
14 }
15
16};
Definition BoosterPackSpaceHelper.h:6
void setAllPacks(List< SharedPointer< BoosterPackData > > *val)
Definition BoosterPackSpaceHelper.h:12
List< SharedPointer< BoosterPackData > > * getAllPacks()
Definition BoosterPackSpaceHelper.h:8
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86