Started making object creation work

This commit is contained in:
vegowotenks 2024-10-18 17:00:09 +02:00
parent e8410e9464
commit 1e9dbd3018
7 changed files with 43 additions and 0 deletions

View file

@ -28,4 +28,6 @@ struct Object_s {
union ValueContent attributes[];
};
size_t Object_AllocationSizeForType(ObjectType* otype);
#endif