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

@@ -40,7 +40,7 @@ typedef struct CObjObject {
CommonHeader; // "is a" CObj
CTable tbl;
void *user; // userdata (NULL by default)
struct CObjObject *meta; // metaobject, describes the behavior of the object
struct CObjObject *proto; // protoobject, describes the behavior of the object
} CObjObject;
typedef struct CObjFunction {