Whoa, amb1941: All of AMX Mod X is now officially moved over to Visual Studio 2005 (MSVC 8)
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
This commit is contained in:
36
installer/builder/ModTFC.cs
Executable file
36
installer/builder/ModTFC.cs
Executable file
@@ -0,0 +1,36 @@
|
||||
using System;
|
||||
|
||||
namespace AMXXRelease
|
||||
{
|
||||
//Team Fortress Classic
|
||||
public class ModTFC : AMod
|
||||
{
|
||||
public ModTFC()
|
||||
{
|
||||
AddModules();
|
||||
AddPlugins();
|
||||
}
|
||||
|
||||
public override sealed string GetName()
|
||||
{
|
||||
return "tfc";
|
||||
}
|
||||
|
||||
private void AddPlugins()
|
||||
{
|
||||
AddPlugin("plmenu");
|
||||
AddPlugin("stats_logging");
|
||||
AddPlugin("statssounds");
|
||||
AddPlugin("stats");
|
||||
Plugin pl = AddPlugin("tfcstats");
|
||||
pl.outdir = "data";
|
||||
}
|
||||
|
||||
private void AddModules()
|
||||
{
|
||||
Module tfcx = new Module("tfcx");
|
||||
|
||||
m_Modules.Add(tfcx);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user