neonucleus/src/universe.h
2025-05-22 17:00:22 +02:00

19 lines
353 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_universe_udata udata[NN_MAX_USERDATA];
size_t udataLen;
nn_clock_t *currentClock;
void *clockUserdata;
} nn_universe;
#endif