Initial community commit

This commit is contained in:
Jef
2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit 20d28e80a5
16810 changed files with 4640254 additions and 2 deletions

View File

@@ -0,0 +1,31 @@
/* This file was generated by Maki Compiler, do not edit manually */
#ifndef __HOOK_TOGGLEBUTTON_H
#define __HOOK_TOGGLEBUTTON_H
#include "h_button.h"
#define H_TOGGLEBUTTON_PARENT H_Button
class H_ToggleButton : public H_TOGGLEBUTTON_PARENT {
public:
H_ToggleButton(ScriptObject *o);
H_ToggleButton();
virtual ~H_ToggleButton();
virtual void H_hook(ScriptObject *o);
ScriptObject *getHookedObject();
virtual int eventCallback(ScriptObject *object, int dlfid, scriptVar **params, int nparams);
virtual void hook_onToggle(int (null)) { }
private:
ScriptObject *obj;
int inited;
static int loaded;
static int ontoggle_id;
};
#endif