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