SEXP asset files

This commit is contained in:
2023-01-02 23:43:07 +00:00
parent 90c830a0e3
commit 09036d075d
4 changed files with 73 additions and 6 deletions

View File

@@ -8,6 +8,11 @@
struct gameobject;
struct compref {
void *data;
struct component *ref;
};
struct component {
const char *name;
void *(*make)(struct gameobject * go); /* Called to create the component */