summaryrefslogtreecommitdiff
path: root/src/noob.h
blob: b8f4035c8d344b58e989162d1ed256fc492fc0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef NB_H
#define NB_H

typedef struct NbVM NbVM;

typedef int(*NbCFunction) (NbVM* vm);

typedef double NbDouble;
typedef int NbInt;
typedef int NbBool; 

#endif