12 lines
196 B
C
12 lines
196 B
C
#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;
|
|
} |