Cyrus Mod Loader
Loading...
Searching...
No Matches
BalloonWindow.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Classes/Window.h>
5#include <Cyrus/Classes/WindowLayout.h>
6
7class BalloonWindow : public WindowLayout {
8public:
9 void Inflate(int a0) { // Function Generated
10 using FunctionPointerType = void (*)(BalloonWindow *self, int a0);
11 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x600190);
12 return inner(this, a0);
13 }
14
15 void Deflate(int a0) { // Function Generated
16 using FunctionPointerType = void (*)(BalloonWindow *self, int a0);
17 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x6002B0);
18 return inner(this, a0);
19 }
20
21};
Definition BalloonWindow.h:7
void Deflate(int a0)
Definition BalloonWindow.h:15
void Inflate(int a0)
Definition BalloonWindow.h:9
Definition Window.h:384