0dc6a4a5dd
Also did the following: * Removed -fPIC from all Linux makefiles * AMXX build tool now also moved over to VS 2005 * AMXX build tool binary renamed from "AMXXRelease" to "builder" * MSVC project files now can use environment variables to point to the paths of the Metamod headers and HL SDK: $(METAMOD) and $(HLSDK) respectively
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");
|
|
}
|
|
}
|
|
}
|