* Committing missing file from last commit.

This commit is contained in:
Adam Frisby
2009-11-02 00:20:41 +11:00
parent 838bc80ab9
commit 3c0881c83c

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;
}
}