TypeInfoGen will now autobind doom scripts.

This commit is contained in:
Justin Marshall
2026-05-23 20:50:12 -07:00
parent df82170a67
commit 293942d07c
132 changed files with 7321 additions and 3762 deletions
+7
View File
@@ -70,7 +70,9 @@ public:
virtual void Stop( void );
protected:
ID_SCRIPT_EVENT( "activate", 0 )
void Event_Activate( idEntity *activator );
ID_SCRIPT_EVENT( "<getattachments>", 0 )
void Event_SetAttachments();
void SetAttachment( idEntity **e, const char *p );
float fov;
@@ -123,10 +125,15 @@ private:
void Think( void );
void LoadAnim( void );
ID_SCRIPT_EVENT( "start", 0 )
void Event_Start( void );
ID_SCRIPT_EVENT( "stop", 0 )
void Event_Stop( void );
ID_SCRIPT_EVENT( "setAnim", 0 )
void Event_SetAnim( const char *animName );
ID_SCRIPT_EVENT( "<script_setcallback>", 'd' )
void Event_SetCallback( void );
ID_SCRIPT_EVENT( "activate", 0 )
void Event_Activate( idEntity *activator );
};