Implement m_lib and some header file defintions

This commit is contained in:
Cuyler36
2023-04-23 18:46:44 -04:00
parent 98d13299ca
commit c75418ec1b
10 changed files with 1058 additions and 370 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef M_ACTOR_H
#define M_ACTOR_H
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct actor_s {
/* TODO ... */
} ACTOR;
#ifdef __cplusplus
}
#endif
#endif