Implement the restart module

This commit is contained in:
Melanie
2010-11-25 01:22:05 +00:00
parent e14f449cc2
commit 6734c9f83a
2 changed files with 114 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ namespace OpenSim.Region.Framework.Interfaces
public interface IRestartModule
{
TimeSpan TimeUntilRestart { get; }
void ScheduleRestart(UUID initiator, string message, int seconds, int[] alerts, bool notice);
void ScheduleRestart(UUID initiator, string message, int[] alerts, bool notice);
void AbortRestart(string message);
}
}