8 lines
115 B
C#
8 lines
115 B
C#
namespace Core.DI;
|
|
|
|
public interface OnUpdate
|
|
{
|
|
bool OnUpdate(long timeSinceLastRun);
|
|
string GetRoute();
|
|
}
|