Cyrus Mod Loader
Loading...
Searching...
No Matches
PetDropFoodItem.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4
6public:
7 unsigned int getUTemplateID() { // Property Generated Getter
8 return *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x48);
9 }
10
11 void setUTemplateID(unsigned int val) { // Property Generated Setter
12 *reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
13 }
14
15 int getNFoodGroup() { // Property Generated Getter
16 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x4C);
17 }
18
19 void setNFoodGroup(int val) { // Property Generated Setter
20 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x4C) = val;
21 }
22
23 float getFFallSpeed() { // Property Generated Getter
24 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x50);
25 }
26
27 void setFFallSpeed(float val) { // Property Generated Setter
28 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
29 }
30
31 int getNFullnessPoints() { // Property Generated Getter
32 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x54);
33 }
34
35 void setNFullnessPoints(int val) { // Property Generated Setter
36 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x54) = val;
37 }
38
39 int getNTimeBonusInSeconds() { // Property Generated Getter
40 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58);
41 }
42
43 void setNTimeBonusInSeconds(int val) { // Property Generated Setter
44 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x58) = val;
45 }
46
47 int getNSpeedBonusInSeconds() { // Property Generated Getter
48 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x5C);
49 }
50
51 void setNSpeedBonusInSeconds(int val) { // Property Generated Setter
52 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x5C) = val;
53 }
54
55 int getNFreezeTimerInSeconds() { // Property Generated Getter
56 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x60);
57 }
58
59 void setNFreezeTimerInSeconds(int val) { // Property Generated Setter
60 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x60) = val;
61 }
62
63 float getFDropWeight() { // Property Generated Getter
64 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x64);
65 }
66
67 void setFDropWeight(float val) { // Property Generated Setter
68 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x64) = val;
69 }
70
71 float getFWeightChange() { // Property Generated Getter
72 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x68);
73 }
74
75 void setFWeightChange(float val) { // Property Generated Setter
76 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0x68) = val;
77 }
78
79 std::string getSCollectSound() { // Property Generated Getter
80 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70);
81 }
82
83 void setSCollectSound(std::string val) { // Property Generated Setter
84 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
85 }
86
87 std::string getSCollectFX() { // Property Generated Getter
88 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90);
89 }
90
91 void setSCollectFX(std::string val) { // Property Generated Setter
92 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x90) = val;
93 }
94
95};
Definition PetDropFoodItem.h:5
void setSCollectFX(std::string val)
Definition PetDropFoodItem.h:91
int getNFullnessPoints()
Definition PetDropFoodItem.h:31
int getNFoodGroup()
Definition PetDropFoodItem.h:15
int getNFreezeTimerInSeconds()
Definition PetDropFoodItem.h:55
float getFFallSpeed()
Definition PetDropFoodItem.h:23
int getNTimeBonusInSeconds()
Definition PetDropFoodItem.h:39
void setNFoodGroup(int val)
Definition PetDropFoodItem.h:19
void setNTimeBonusInSeconds(int val)
Definition PetDropFoodItem.h:43
std::string getSCollectSound()
Definition PetDropFoodItem.h:79
void setFWeightChange(float val)
Definition PetDropFoodItem.h:75
void setFDropWeight(float val)
Definition PetDropFoodItem.h:67
void setUTemplateID(unsigned int val)
Definition PetDropFoodItem.h:11
unsigned int getUTemplateID()
Definition PetDropFoodItem.h:7
void setNFullnessPoints(int val)
Definition PetDropFoodItem.h:35
float getFWeightChange()
Definition PetDropFoodItem.h:71
void setSCollectSound(std::string val)
Definition PetDropFoodItem.h:83
void setNFreezeTimerInSeconds(int val)
Definition PetDropFoodItem.h:59
void setFFallSpeed(float val)
Definition PetDropFoodItem.h:27
float getFDropWeight()
Definition PetDropFoodItem.h:63
std::string getSCollectFX()
Definition PetDropFoodItem.h:87
void setNSpeedBonusInSeconds(int val)
Definition PetDropFoodItem.h:51
int getNSpeedBonusInSeconds()
Definition PetDropFoodItem.h:47
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86