renamed metaobjects to protoobjects

This commit is contained in:
2020-11-15 12:22:11 -06:00
parent ae22a6cef5
commit c7be39a5d4
7 changed files with 23 additions and 23 deletions

View File

@@ -38,7 +38,7 @@ typedef struct CState {
int frameCount;
CObjString *internalStrings[INTERNALSTRING_MAX]; // strings used internally by the VM, eg. __init
CObjObject *metaObj; // start met obj for all objects (NULL by default)
CObjObject *protoObj; // start met obj for all objects (NULL by default)
} CState;
COSMO_API CState *cosmoV_newState();