mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
15 lines
277 B
C
15 lines
277 B
C
|
|
#ifndef UI_SCRIPT_OBJECT_H
|
||
|
|
#define UI_SCRIPT_OBJECT_H
|
||
|
|
|
||
|
|
#include "common/rcstring.h"
|
||
|
|
#include "framescript/object.h"
|
||
|
|
|
||
|
|
DECLARE_STRUCT(CScriptObject);
|
||
|
|
|
||
|
|
// struct CScriptObject : FrameScript_Object {
|
||
|
|
struct CScriptObject {
|
||
|
|
FrameScript_Object b_base;
|
||
|
|
RCString m_name;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|