Cyrus Mod Loader
Loading...
Searching...
No Matches
CreateHangingEffectActorCinematicAction.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/ActorCinematicAction.h>
4#include <Cyrus/Classes/CinematicAction.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 bool getCloaked() { // Property Generated Getter
10 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x78);
11 }
12
13 void setCloaked(bool val) { // Property Generated Setter
14 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
15 }
16
17 std::string getNewActorName() { // Property Generated Getter
18 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x80);
19 }
20
21 void setNewActorName(std::string val) { // Property Generated Setter
22 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
23 }
24
25};
Definition ActorCinematicAction.h:6
Definition CreateHangingEffectActorCinematicAction.h:7
std::string getNewActorName()
Definition CreateHangingEffectActorCinematicAction.h:17
void setNewActorName(std::string val)
Definition CreateHangingEffectActorCinematicAction.h:21
void setCloaked(bool val)
Definition CreateHangingEffectActorCinematicAction.h:13
bool getCloaked()
Definition CreateHangingEffectActorCinematicAction.h:9