2005-08-02 06:28:41 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace AMXXRelease
|
|
|
|
{
|
2005-08-24 02:53:38 +00:00
|
|
|
//Earth's Special Forces
|
2005-08-02 06:28:41 +00:00
|
|
|
public class ModEsf : AMod
|
|
|
|
{
|
|
|
|
public ModEsf()
|
|
|
|
{
|
2005-08-24 06:56:02 +00:00
|
|
|
AddPlugins();
|
2005-08-02 06:28:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override sealed string GetName()
|
|
|
|
{
|
|
|
|
return "esf";
|
|
|
|
}
|
|
|
|
|
2005-08-24 06:56:02 +00:00
|
|
|
private void AddPlugins()
|
2005-08-02 06:28:41 +00:00
|
|
|
{
|
2005-08-24 06:56:02 +00:00
|
|
|
AddPlugin("EvolutionX.Core");
|
2005-08-02 06:28:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|