Cyrus Mod Loader
Loading...
Searching...
No Matches
ControlTileMap__Tile.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/Material.h>
4#include <Cyrus/Classes/PropertyClass.h>
5#include <Cyrus/Classes/TextComponent.h>
6
8public:
9 Color getColor() { // Property Generated Getter
10 return *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0x48);
11 }
12
13 void setColor(Color val) { // Property Generated Setter
14 *reinterpret_cast<Color*>(reinterpret_cast<uintptr_t>(this) + 0x48) = val;
15 }
16
17 SharedPointer<Material> * getPMaterial() { // Property Generated Getter
18 return reinterpret_cast<SharedPointer<Material> *>(reinterpret_cast<uintptr_t>(this) + 0x50);
19 }
20
21 void setPMaterial(SharedPointer<Material> * val) { // Property Generated Setter
22 *reinterpret_cast<SharedPointer<Material> **>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
23 }
24
25 Rect<float> getUV() { // Property Generated Getter
26 return *reinterpret_cast<Rect<float>*>(reinterpret_cast<uintptr_t>(this) + 0x60);
27 }
28
29 void setUV(Rect<float> val) { // Property Generated Setter
30 *reinterpret_cast<Rect<float>*>(reinterpret_cast<uintptr_t>(this) + 0x60) = val;
31 }
32
33 int getNNextTile() { // Property Generated Getter
34 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x70);
35 }
36
37 void setNNextTile(int val) { // Property Generated Setter
38 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0x70) = val;
39 }
40
41 TextComponent getTextComponent() { // Property Generated Getter
42 return *reinterpret_cast<TextComponent*>(reinterpret_cast<uintptr_t>(this) + 0x78);
43 }
44
45 void setTextComponent(TextComponent val) { // Property Generated Setter
46 *reinterpret_cast<TextComponent*>(reinterpret_cast<uintptr_t>(this) + 0x78) = val;
47 }
48
49 int AddText(int a0, int a1, std::wstring a2) { // Function Generated
50 using FunctionPointerType = int (*)(struct ControlTileMap::Tile *self, int a0, int a1, std::wstring a2);
51 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BDBF0);
52 return inner(this, a0, a1, a2);
53 }
54
55 void ClearText() { // Function Generated
56 using FunctionPointerType = void (*)(struct ControlTileMap::Tile *self);
57 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BDD20);
58 return inner(this);
59 }
60
61 void SetColor(Color a0) { // Function Generated
62 using FunctionPointerType = void (*)(struct ControlTileMap::Tile *self, Color a0);
63 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BFEF0);
64 return inner(this, a0);
65 }
66
67 Color GetColor() { // Function Generated
68 using FunctionPointerType = Color (*)(struct ControlTileMap::Tile *self);
69 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BE580);
70 return inner(this);
71 }
72
73 void SetMaterial(SharedPointer<Material> a0) { // Function Generated
74 using FunctionPointerType = void (*)(struct ControlTileMap::Tile *self, SharedPointer<Material> a0);
75 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BFF40);
76 return inner(this, a0);
77 }
78
79 Material* GetMaterial() { // Function Generated
80 using FunctionPointerType = Material* (*)(struct ControlTileMap::Tile *self);
81 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BE5B0);
82 return inner(this);
83 }
84
85 void SetUV(Rect<float> a0) { // Function Generated
86 using FunctionPointerType = void (*)(struct ControlTileMap::Tile *self, Rect<float> a0);
87 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BFFD0);
88 return inner(this, a0);
89 }
90
91 Rect<float> GetUV() { // Function Generated
92 using FunctionPointerType = Rect<float> (*)(struct ControlTileMap::Tile *self);
93 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BE780);
94 return inner(this);
95 }
96
97 void SetTextComponent(TextComponent a0) { // Function Generated
98 using FunctionPointerType = void (*)(struct ControlTileMap::Tile *self, TextComponent a0);
99 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BFF60);
100 return inner(this, a0);
101 }
102
103 TextComponent GetTextComponent() { // Function Generated
104 using FunctionPointerType = TextComponent (*)(struct ControlTileMap::Tile *self);
105 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16BE620);
106 return inner(this);
107 }
108
109};
Definition ControlTileMap__Tile.h:7
Rect< float > getUV()
Definition ControlTileMap__Tile.h:25
void SetMaterial(SharedPointer< Material > a0)
Definition ControlTileMap__Tile.h:73
int AddText(int a0, int a1, std::wstring a2)
Definition ControlTileMap__Tile.h:49
Color getColor()
Definition ControlTileMap__Tile.h:9
Color GetColor()
Definition ControlTileMap__Tile.h:67
void ClearText()
Definition ControlTileMap__Tile.h:55
void SetTextComponent(TextComponent a0)
Definition ControlTileMap__Tile.h:97
void SetColor(Color a0)
Definition ControlTileMap__Tile.h:61
Rect< float > GetUV()
Definition ControlTileMap__Tile.h:91
void setUV(Rect< float > val)
Definition ControlTileMap__Tile.h:29
int getNNextTile()
Definition ControlTileMap__Tile.h:33
SharedPointer< Material > * getPMaterial()
Definition ControlTileMap__Tile.h:17
void setTextComponent(TextComponent val)
Definition ControlTileMap__Tile.h:45
void setNNextTile(int val)
Definition ControlTileMap__Tile.h:37
Material * GetMaterial()
Definition ControlTileMap__Tile.h:79
void setPMaterial(SharedPointer< Material > *val)
Definition ControlTileMap__Tile.h:21
void SetUV(Rect< float > a0)
Definition ControlTileMap__Tile.h:85
TextComponent GetTextComponent()
Definition ControlTileMap__Tile.h:103
void setColor(Color val)
Definition ControlTileMap__Tile.h:13
TextComponent getTextComponent()
Definition ControlTileMap__Tile.h:41
Definition Material.h:8
Base class for all property classes, providing reflection and serialization functionality.
Definition PropertyClass.h:86
Definition TextComponent.h:5
Definition shared.h:35
Definition shared.h:28