This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.API/Server/IEventScheduler.cs
2014-12-27 18:19:41 -07:00

10 lines
202 B
C#

using System;
namespace TrueCraft.API.Server
{
public interface IEventScheduler
{
void ScheduleEvent(DateTime when, Action<IMultiplayerServer> action);
void Update();
}
}