Cyrus Mod Loader
Loading...
Searching...
No Matches
ResAsyncScript.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Classes/Result.h>
5
6class ResAsyncScript : public Result {
7public:
8 std::string getScript() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setScript(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 std::string getStartEvent() { // Property Generated Getter
17 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68);
18 }
19
20 void setStartEvent(std::string val) { // Property Generated Setter
21 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
22 }
23
24 std::string getEndEvent() { // Property Generated Getter
25 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88);
26 }
27
28 void setEndEvent(std::string val) { // Property Generated Setter
29 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
30 }
31
32};
Definition ResAsyncScript.h:6
std::string getEndEvent()
Definition ResAsyncScript.h:24
void setEndEvent(std::string val)
Definition ResAsyncScript.h:28
std::string getScript()
Definition ResAsyncScript.h:8
void setStartEvent(std::string val)
Definition ResAsyncScript.h:20
void setScript(std::string val)
Definition ResAsyncScript.h:12
std::string getStartEvent()
Definition ResAsyncScript.h:16
Definition Result.h:5