pretty much all the structs we care about
This commit is contained in:
16
src/computer.h
Normal file
16
src/computer.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef NEONUCLEUS_COMPUTER_H
|
||||
#define NEONUCLEUS_COMPUTER_H
|
||||
|
||||
#include "neonucleus.h"
|
||||
|
||||
typedef struct nn_computer {
|
||||
nn_component *components;
|
||||
size_t componentLen;
|
||||
size_t componentCap;
|
||||
nn_value args[NN_MAX_ARGS];
|
||||
size_t argc;
|
||||
nn_value rets[NN_MAX_RETS];
|
||||
size_t retc;
|
||||
} nn_computer;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user