Files
RaindropViewer/Assets/Raindrop/Unity3D/ISchedulable.cs
T
2022-03-28 21:29:45 +08:00

9 lines
243 B
C#

namespace Raindrop.Unity3D
{
// allow periodic tasks to be done by implementing this and registering the instance to the scheduler.
public interface ISchedulable
{
public bool canRun();
public void Run();
}
}