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
38 lines
535 B
C#
Executable File
38 lines
535 B
C#
Executable File
using System;
|
|
|
|
namespace AMXXRelease
|
|
{
|
|
//Natural Selection
|
|
public class ModNs : AMod
|
|
{
|
|
public ModNs()
|
|
{
|
|
AddModules();
|
|
AddPlugins();
|
|
}
|
|
|
|
public override sealed string GetName()
|
|
{
|
|
return "ns";
|
|
}
|
|
|
|
private void AddPlugins()
|
|
{
|
|
AddPlugin("mapchooser");
|
|
AddPlugin("nextmap");
|
|
AddPlugin("timeleft");
|
|
AddPlugin("idlekicker");
|
|
AddPlugin("nscommands");
|
|
AddPlugin("unstuck");
|
|
AddPlugin("plmenu");
|
|
}
|
|
|
|
private void AddModules()
|
|
{
|
|
Module ns = new Module("ns");
|
|
|
|
m_Modules.Add(ns);
|
|
}
|
|
}
|
|
}
|