Cyrus Mod Loader
Loading...
Searching...
No Matches
ObstacleCourseSpringboardBehaviorTemplate.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/BehaviorTemplate.h>
4#include <Cyrus/Classes/ObstacleCourseObstacleBehaviorTemplate.h>
5#include <Cyrus/Classes/PropertyClass.h>
6#include <Cyrus/Classes/WeightedList.h>
7
9public:
10 float getPenaltyTime() { // Property Generated Getter
11 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x78);
12 }
13
14 void setPenaltyTime(float val) { // Property Generated Setter
15 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
16 }
17
18 float getRate() { // Property Generated Getter
19 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C);
20 }
21
22 void setRate(float val) { // Property Generated Setter
23 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x7C) = val;
24 }
25
26 float getSpringboardLength() { // Property Generated Getter
27 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x80);
28 }
29
30 void setSpringboardLength(float val) { // Property Generated Setter
31 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x80) = val;
32 }
33
34 float getSpringboardWidth() { // Property Generated Getter
35 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x84);
36 }
37
38 void setSpringboardWidth(float val) { // Property Generated Setter
39 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x84) = val;
40 }
41
42 float getCollisionHeight() { // Property Generated Getter
43 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x88);
44 }
45
46 void setCollisionHeight(float val) { // Property Generated Setter
47 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x88) = val;
48 }
49
50 WeightedList getSpringboardHitSoundList() { // Property Generated Getter
51 return *reinterpret_cast<WeightedList*>(reinterpret_cast<uintptr_t>(this) + 0x90);
52 }
53
54 void setSpringboardHitSoundList(WeightedList val) { // Property Generated Setter
55 *reinterpret_cast<WeightedList*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
56 }
57
58};
Definition ObstacleCourseObstacleBehaviorTemplate.h:6
Definition ObstacleCourseSpringboardBehaviorTemplate.h:8
void setRate(float val)
Definition ObstacleCourseSpringboardBehaviorTemplate.h:22
void setSpringboardLength(float val)
Definition ObstacleCourseSpringboardBehaviorTemplate.h:30
WeightedList getSpringboardHitSoundList()
Definition ObstacleCourseSpringboardBehaviorTemplate.h:50
void setCollisionHeight(float val)
Definition ObstacleCourseSpringboardBehaviorTemplate.h:46
float getRate()
Definition ObstacleCourseSpringboardBehaviorTemplate.h:18
void setSpringboardWidth(float val)
Definition ObstacleCourseSpringboardBehaviorTemplate.h:38
float getSpringboardLength()
Definition ObstacleCourseSpringboardBehaviorTemplate.h:26
float getCollisionHeight()
Definition ObstacleCourseSpringboardBehaviorTemplate.h:42
void setSpringboardHitSoundList(WeightedList val)
Definition ObstacleCourseSpringboardBehaviorTemplate.h:54
float getPenaltyTime()
Definition ObstacleCourseSpringboardBehaviorTemplate.h:10
float getSpringboardWidth()
Definition ObstacleCourseSpringboardBehaviorTemplate.h:34
void setPenaltyTime(float val)
Definition ObstacleCourseSpringboardBehaviorTemplate.h:14
Definition WeightedList.h:6