mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-26 06:45:37 +03:00
24 lines
282 B
C#
Executable File
24 lines
282 B
C#
Executable File
using System;
|
|
|
|
namespace AMXXRelease
|
|
{
|
|
//Earth's Special Forces
|
|
public class ModEsf : AMod
|
|
{
|
|
public ModEsf()
|
|
{
|
|
AddPlugins();
|
|
}
|
|
|
|
public override sealed string GetName()
|
|
{
|
|
return "esf";
|
|
}
|
|
|
|
private void AddPlugins()
|
|
{
|
|
AddPlugin("EvolutionX.Core");
|
|
}
|
|
}
|
|
}
|