* Committing missing file from last commit.

0.6.8-post-fixes
Adam Frisby 2009-11-02 00:20:41 +11:00
parent 838bc80ab9
commit 3c0881c83c
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
using System;
namespace OpenSim.Region.CoreModules.Framework.Monitoring
{
internal delegate void Alert(Type reporter, string reason, bool fatal);
interface IAlert
{
string GetName();
void Test();
event Alert OnTriggerAlert;
}
}