Cyrus Mod Loader
Loading...
Searching...
No Matches
CraftingSlot.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/CoreObject.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
6class CraftingSlot : public CoreObject {
7public:
8 std::string getRecipeName() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x188);
10 }
11
12 void setRecipeName(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0x188) = val;
14 }
15
16 int getTimeFinished() { // Property Generated Getter
17 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x184);
18 }
19
20 void setTimeFinished(int val) { // Property Generated Setter
21 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x184) = val;
22 }
23
24};
Definition CoreObject.h:29
Definition CraftingSlot.h:6
std::string getRecipeName()
Definition CraftingSlot.h:8
int getTimeFinished()
Definition CraftingSlot.h:16
void setTimeFinished(int val)
Definition CraftingSlot.h:20
void setRecipeName(std::string val)
Definition CraftingSlot.h:12