8 lines
303 B
C#
8 lines
303 B
C#
namespace OpenGLTutorial.Rendering.Objects.Components {
|
|
public interface IComponent {
|
|
public void Load(GameObject thisObject);
|
|
public void Update(GameObject thisObject);
|
|
public void Destroy(GameObject thisObject);
|
|
public void Render(GameObject thisObject);
|
|
}
|
|
} |