Cyrus Mod Loader
Loading...
Searching...
No Matches
SoundDefTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CoreTemplate.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 std::string getSoundName() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x60);
10 }
11
12 void setSoundName(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x60) = val;
14 }
15
16 std::string getSoundFile() { // Property Generated Getter
17 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88);
18 }
19
20 void setSoundFile(std::string val) { // Property Generated Setter
21 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
22 }
23
24 double getDelay() { // Property Generated Getter
25 return *reinterpret_cast<double*>(reinterpret_cast<uintptr_t>(this) + 0xA8);
26 }
27
28 void setDelay(double val) { // Property Generated Setter
29 *reinterpret_cast<double*>(reinterpret_cast<uintptr_t>(this) + 0xA8) = val;
30 }
31
32};
Definition CoreTemplate.h:16
Definition SoundDefTemplate.h:6
std::string getSoundFile()
Definition SoundDefTemplate.h:16
double getDelay()
Definition SoundDefTemplate.h:24
std::string getSoundName()
Definition SoundDefTemplate.h:8
void setDelay(double val)
Definition SoundDefTemplate.h:28
void setSoundFile(std::string val)
Definition SoundDefTemplate.h:20
void setSoundName(std::string val)
Definition SoundDefTemplate.h:12