Cyrus Mod Loader
Loading...
Searching...
No Matches
ObjectRemapBehaviorTemplate.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 getFloorMaterialName() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78);
10 }
11
12 void setFloorMaterialName(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
14 }
15
16 std::string getWallMaterialName() { // Property Generated Getter
17 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98);
18 }
19
20 void setWallMaterialName(std::string val) { // Property Generated Setter
21 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x98) = val;
22 }
23
24 bool getBothFloor() { // Property Generated Getter
25 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xB8);
26 }
27
28 void setBothFloor(bool val) { // Property Generated Setter
29 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xB8) = val;
30 }
31
32 bool getBothWall() { // Property Generated Getter
33 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xB9);
34 }
35
36 void setBothWall(bool val) { // Property Generated Setter
37 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0xB9) = val;
38 }
39
40};
Definition BehaviorTemplate.h:13
Definition ObjectRemapBehaviorTemplate.h:6
std::string getWallMaterialName()
Definition ObjectRemapBehaviorTemplate.h:16
bool getBothWall()
Definition ObjectRemapBehaviorTemplate.h:32
void setBothFloor(bool val)
Definition ObjectRemapBehaviorTemplate.h:28
void setWallMaterialName(std::string val)
Definition ObjectRemapBehaviorTemplate.h:20
std::string getFloorMaterialName()
Definition ObjectRemapBehaviorTemplate.h:8
void setFloorMaterialName(std::string val)
Definition ObjectRemapBehaviorTemplate.h:12
void setBothWall(bool val)
Definition ObjectRemapBehaviorTemplate.h:36
bool getBothFloor()
Definition ObjectRemapBehaviorTemplate.h:24