24 lines
208 B
C
24 lines
208 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "util/vector.h"
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
// Entity.
|
||
|
typedef struct {
|
||
|
uintptr_t type;
|
||
|
const char *name;
|
||
|
|
||
|
} Entity;
|
||
|
|
||
|
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|