Cyrus Mod Loader
Loading...
Searching...
No Matches
WinAnimSize.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Classes/WindowAnimation.h>
5
7public:
8 Size<int> getSize() { // Property Generated Getter
9 return *reinterpret_cast<Size<int>*>(reinterpret_cast<uintptr_t>(this) + 0x50);
10 }
11
12 void setSize(Size<int> val) { // Property Generated Setter
13 *reinterpret_cast<Size<int>*>(reinterpret_cast<uintptr_t>(this) + 0x50) = val;
14 }
15
16 Size<int> GetSize() { // Function Generated
17 using FunctionPointerType = Size<int> (*)(WinAnimSize *self);
18 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16CA7B0);
19 return inner(this);
20 }
21
22 void SetSize(int a0, int a1) { // Function Generated
23 using FunctionPointerType = void (*)(WinAnimSize *self, int a0, int a1);
24 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x16C7660);
25 return inner(this, a0, a1);
26 }
27
28};
Definition WinAnimSize.h:6
Size< int > GetSize()
Definition WinAnimSize.h:16
void setSize(Size< int > val)
Definition WinAnimSize.h:12
void SetSize(int a0, int a1)
Definition WinAnimSize.h:22
Size< int > getSize()
Definition WinAnimSize.h:8
Definition WindowAnimation.h:5