Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/C#/OpenGLTutorial/Rendering/Objects/Components/IComponent.cs
2022-09-04 13:23:45 +02:00

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);
}
}