# GameObject

> Component Author: [Jabo](https://github.com/jabo-bernardo)\
> Release Date: April 11, 2020

{% tabs %}
{% tab title="Usage" %}

```java
new GameObject(Scene parentScene, String gameObjectName);
```

{% endtab %}

{% tab title="Methods" %}

```java
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 Scene
```

{% endtab %}
{% endtabs %}
