10 lines
202 B
C#
10 lines
202 B
C#
using System;
|
|
|
|
namespace TrueCraft.API.Server
|
|
{
|
|
public interface IEventScheduler
|
|
{
|
|
void ScheduleEvent(DateTime when, Action<IMultiplayerServer> action);
|
|
void Update();
|
|
}
|
|
} |