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