IEntityComponent
interface IEntityComponent
{
void UpdateComponent();
}
This interface is what the other components in this section inherit from. If you wish to make your own components you may like to do the same.
Methods
void UpdateComponent()
Override this in classes that implement this interface. This update function is likely called per game tick