c9c1af653b
Added OnUpdate example mod Expanded `OnUpdateOrder` options
8 lines
116 B
C#
8 lines
116 B
C#
namespace Core.DI;
|
|
|
|
public interface IOnUpdate
|
|
{
|
|
bool OnUpdate(long timeSinceLastRun);
|
|
string GetRoute();
|
|
}
|