Init commit

This commit is contained in:
derek holloway
2026-03-09 18:56:08 -07:00
commit 190204b3b6
4 changed files with 62 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#include <stdio.h>
#include "class.h"
int main(int argc, char** argv){
Humanoid_t* Player1 = InitHuman("Derek Hollowy");
Player1->move(Player1, 4, 9);
Player1->remove(Player1);
return 1;
}