Unique id for the Entity
Retrieve the Entity's tag as provided in its config
the Entity's tag
Add a Component to the Entity
the Component to add
Add a list of Components to the Entity
the Components to add
Retrieve a Component by name
Throws an error if the Component is not found on the Entity to allow type safety + simplistic no-questions consumer calls
the type of the Component to retrieve
the name of the Component to retrieve
the retrieved Component
Check if the Entity has a named Component
the name of the Component to check
whether or not the Entity has the named Component
Check if the Entity has a list of named Components
the names of the Components to check
whether or not the Entity has all of the named Components
Remove the named Component from the Entity
the name of the Component to remove
Remove a list of named Components from the Entity
the names of the Components to remove
Optional frame update function called by the EntityManager during frame execution, implementable by concrete Entities
the Game the System is operating within
the frame delta as calculated by the Game
Prefab Entity representing a 3D UI panel, utilised by the 3D UIManager