GameObject
This components is the main building block for your game this lets you create Player, Enemies, Collectibles and more!
new GameObject(Scene parentScene, String gameObjectName);addComponent(Component c); // Adds component to the GameObject
getComponent(String componentName); // Returns Component
getTransform(); // Returns Transform Object
getID(); // Returns the ID of the Game Object
getName(); // Returns String
getParentScene(); // Returns SceneLast updated