Cyrus Mod Loader
Loading...
Searching...
No Matches
DependentResourcesBehaviorTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorTemplate.h>
4#include <Cyrus/Classes/DependentResourceContainer.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 List<DependentResourceContainer> getDependentResourceList() { // Property Generated Getter
10 return *reinterpret_cast<List<DependentResourceContainer>*>(reinterpret_cast<uintptr_t>(this) + 0x78);
11 }
12
13 void setDependentResourceList(List<DependentResourceContainer> val) { // Property Generated Setter
14 *reinterpret_cast<List<DependentResourceContainer>*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
15 }
16
17};
Definition BehaviorTemplate.h:13
Definition DependentResourcesBehaviorTemplate.h:7
void setDependentResourceList(List< DependentResourceContainer > val)
Definition DependentResourcesBehaviorTemplate.h:13
List< DependentResourceContainer > getDependentResourceList()
Definition DependentResourcesBehaviorTemplate.h:9