oriels/app/App.cs
2022-06-17 19:03:45 -04:00

5 lines
No EOL
84 B
C#

interface IApp { // <T> ?
void Initialize();
void Update();
void Shutdown();
}