Implement and link ac_t_utiwa

This commit is contained in:
Hexalotl
2024-01-20 23:28:27 -08:00
parent cc7475c402
commit 5f6ce36ed1
3 changed files with 128 additions and 1 deletions
+9 -1
View File
@@ -2,7 +2,7 @@
#define AC_T_UTIWA_H
#include "types.h"
#include "m_actor.h"
#include "ac_tools.h"
#ifdef __cplusplus
extern "C" {
@@ -10,6 +10,14 @@ extern "C" {
extern ACTOR_PROFILE T_Utiwa_Profile;
typedef void (*UTIWA_PROC)(ACTOR*);
typedef struct t_utiwa_s{
TOOLS_ACTOR tools_class;
UTIWA_PROC proc;
int current_id;
} UTIWA_ACTOR;
#ifdef __cplusplus
}
#endif