Cyrus Mod Loader
Loading...
Searching...
No Matches
FontGlyphis.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/Font.h>
4#include <Cyrus/Classes/PropertyClass.h>
5
6class FontGlyphis : public Font {
7public:
8 std::string getSFilename() { // Property Generated Getter
9 return *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA0);
10 }
11
12 void setSFilename(std::string val) { // Property Generated Setter
13 *reinterpret_cast<std::string*>(reinterpret_cast<uintptr_t>(this) + 0xA0) = val;
14 }
15
16 float getFScale() { // Property Generated Getter
17 return *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0xC0);
18 }
19
20 void setFScale(float val) { // Property Generated Setter
21 *reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(this) + 0xC0) = val;
22 }
23
24 int getNKerningAdjust() { // Property Generated Getter
25 return *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0xC8);
26 }
27
28 void setNKerningAdjust(int val) { // Property Generated Setter
29 *reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(this) + 0xC8) = val;
30 }
31
32 void SetFileName(std::string a0) { // Function Generated
33 using FunctionPointerType = void (*)(FontGlyphis *self, std::string a0);
34 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x163FAD0);
35 return inner(this, a0);
36 }
37
38 std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > GetFileName() { // Function Generated
39 using FunctionPointerType = std::basic_string<char,struct std::char_traits<char>,std::allocator<char> > (*)(FontGlyphis *self);
40 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x15FBCB0);
41 return inner(this);
42 }
43
44 void SetScaling(float a0) { // Function Generated
45 using FunctionPointerType = void (*)(FontGlyphis *self, float a0);
46 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x163F844);
47 return inner(this, a0);
48 }
49
50 float GetScaling() { // Function Generated
51 using FunctionPointerType = float (*)(FontGlyphis *self);
52 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x163F838);
53 return inner(this);
54 }
55
56};
Definition FontGlyphis.h:6
float getFScale()
Definition FontGlyphis.h:16
int getNKerningAdjust()
Definition FontGlyphis.h:24
void setNKerningAdjust(int val)
Definition FontGlyphis.h:28
float GetScaling()
Definition FontGlyphis.h:50
std::string getSFilename()
Definition FontGlyphis.h:8
void setSFilename(std::string val)
Definition FontGlyphis.h:12
void SetFileName(std::string a0)
Definition FontGlyphis.h:32
std::basic_string< char, struct std::char_traits< char >, std::allocator< char > > GetFileName()
Definition FontGlyphis.h:38
void SetScaling(float a0)
Definition FontGlyphis.h:44
void setFScale(float val)
Definition FontGlyphis.h:20
Definition Font.h:5