Cyrus Mod Loader
Loading...
Searching...
No Matches
ColorPickerSWF.h
1#pragma once
2#include <Cyrus/Shared.h>
3#include <Cyrus/Classes/PropertyClass.h>
4#include <Cyrus/Classes/Window.h>
5
6class ColorPickerSWF : public Window {
7public:
8 void HandleBuyButtonPress() { // Function Generated
9 using FunctionPointerType = void (*)(ColorPickerSWF *self);
10 FunctionPointerType inner = reinterpret_cast<FunctionPointerType>(__SHARED::base + 0x6E92C0);
11 return inner(this);
12 }
13
14};
Definition ColorPickerSWF.h:6
void HandleBuyButtonPress()
Definition ColorPickerSWF.h:8
Represents a Wizard101 Window, think anything you see on screen that is not a 3D model.
Definition Window.h:45