Cyrus Mod Loader
Loading...
Searching...
No Matches
PersonaGoalTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CoreTemplate.h>
4#include <Cyrus/Classes/GoalTemplate.h>
5#include <Cyrus/Classes/PropertyClass.h>
6
8public:
9 std::string getPersonaName() { // Property Generated Getter
10 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x208);
11 }
12
13 void setPersonaName(std::string val) { // Property Generated Setter
14 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x208) = val;
15 }
16
17 bool getUsePatron() { // Property Generated Getter
18 return *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x228);
19 }
20
21 void setUsePatron(bool val) { // Property Generated Setter
22 *reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(this) + 0x228) = val;
23 }
24
25};
Definition GoalTemplate.h:7
Definition PersonaGoalTemplate.h:7
void setPersonaName(std::string val)
Definition PersonaGoalTemplate.h:13
std::string getPersonaName()
Definition PersonaGoalTemplate.h:9
void setUsePatron(bool val)
Definition PersonaGoalTemplate.h:21
bool getUsePatron()
Definition PersonaGoalTemplate.h:17