Cyrus Mod Loader
Loading...
Searching...
No Matches
InteractiveMusicLoop.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/InteractiveMusicNote.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
7public:
8 int getLoopNumber() { // Property Generated Getter
9 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x48);
10 }
11
12 void setLoopNumber(int val) { // Property Generated Setter
13 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
14 }
15
16 std::string getComposerPackedName() { // Property Generated Getter
17 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50);
18 }
19
20 void setComposerPackedName(std::string val) { // Property Generated Setter
21 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
22 }
23
24 gid getComposerGID() { // Property Generated Getter
25 return *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x70);
26 }
27
28 void setComposerGID(gid val) { // Property Generated Setter
29 *reinterpret_cast<gid*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
30 }
31
32 float getMetronomeTempo() { // Property Generated Getter
33 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x78);
34 }
35
36 void setMetronomeTempo(float val) { // Property Generated Setter
37 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
38 }
39
40 float getFirstNodeDelay() { // Property Generated Getter
41 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C);
42 }
43
44 void setFirstNodeDelay(float val) { // Property Generated Setter
45 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C) = val;
46 }
47
48 List<SharedPointer<InteractiveMusicNote>> * getMusicNoteList() { // Property Generated Getter
49 return reinterpret_cast<List<SharedPointer<InteractiveMusicNote>> *>(reinterpret_cast<uintptr_t>(this) + 0x80);
50 }
51
52 void setMusicNoteList(List<SharedPointer<InteractiveMusicNote>> * val) { // Property Generated Setter
53 *reinterpret_cast<List<SharedPointer<InteractiveMusicNote>> **>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
54 }
55
56 std::string getCompressedmusicNoteData() { // Property Generated Getter
57 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90);
58 }
59
60 void setCompressedmusicNoteData(std::string val) { // Property Generated Setter
61 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
62 }
63
64};
Definition InteractiveMusicLoop.h:6
void setCompressedmusicNoteData(std::string val)
Definition InteractiveMusicLoop.h:60
int getLoopNumber()
Definition InteractiveMusicLoop.h:8
std::string getComposerPackedName()
Definition InteractiveMusicLoop.h:16
std::string getCompressedmusicNoteData()
Definition InteractiveMusicLoop.h:56
void setComposerPackedName(std::string val)
Definition InteractiveMusicLoop.h:20
void setComposerGID(gid val)
Definition InteractiveMusicLoop.h:28
float getFirstNodeDelay()
Definition InteractiveMusicLoop.h:40
void setFirstNodeDelay(float val)
Definition InteractiveMusicLoop.h:44
gid getComposerGID()
Definition InteractiveMusicLoop.h:24
void setMusicNoteList(List< SharedPointer< InteractiveMusicNote > > *val)
Definition InteractiveMusicLoop.h:52
void setMetronomeTempo(float val)
Definition InteractiveMusicLoop.h:36
void setLoopNumber(int val)
Definition InteractiveMusicLoop.h:12
List< SharedPointer< InteractiveMusicNote > > * getMusicNoteList()
Definition InteractiveMusicLoop.h:48
float getMetronomeTempo()
Definition InteractiveMusicLoop.h:32
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86