mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-29 19:03:10 +00:00
9 lines
243 B
C#
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();
|
|
}
|
|
} |