mirror of
https://github.com/NeoFlock/neonucleus.git
synced 2025-09-24 09:03:32 +02:00
18 lines
318 B
C
18 lines
318 B
C
#ifndef NEONUCLEUS_UNIVERSE_H
|
|
#define NEONUCLEUS_UNIVERSE_H
|
|
|
|
#include "neonucleus.h"
|
|
|
|
typedef struct nn_universe_udata {
|
|
char *name;
|
|
void *userdata;
|
|
} nn_universe_udata;
|
|
|
|
typedef struct nn_universe {
|
|
nn_Context ctx;
|
|
nn_universe_udata udata[NN_MAX_USERDATA];
|
|
size_t udataLen;
|
|
} nn_universe;
|
|
|
|
#endif
|