Class DockerEntity
- Namespace
- Awperative
- Assembly
- Awperative.dll
Base class for all Awperative entities, manages components as a requirement because that is the job of all entities.
public abstract class DockerEntity
- Inheritance
-
DockerEntity
- Derived
- Inherited Members
Fields
Scene
public Scene Scene
Field Value
Methods
AddComponent<Generic>()
public Component AddComponent<Generic>() where Generic : Component
Returns
Type Parameters
Generic
AddComponent<Generic>(object[])
public Component AddComponent<Generic>(object[] __args) where Generic : Component
Parameters
__argsobject[]
Returns
Type Parameters
Generic
GetComponent<Generic>()
public Component GetComponent<Generic>() where Generic : Component
Returns
Type Parameters
Generic
GetComponents<Generic>()
public Component[] GetComponents<Generic>() where Generic : Component
Returns
Type Parameters
Generic
RemoveComponent(Component)
public void RemoveComponent(Component __component)
Parameters
__componentComponent
RemoveComponent<Generic>()
public void RemoveComponent<Generic>() where Generic : Component
Type Parameters
Generic
RemoveComponents<Generic>()
public void RemoveComponents<Generic>() where Generic : Component
Type Parameters
Generic