committed C# releaser

This commit is contained in:
David Anderson
2005-08-02 06:28:41 +00:00
parent 25cbe60bf8
commit cc393d0e8d
17 changed files with 1172 additions and 0 deletions

View File

@ -0,0 +1,34 @@
using System;
namespace AMXXRelease
{
/// <summary>
/// Summary description for Release15.
/// </summary>
public class Release15 : ABuild
{
public Release15()
{
CoreMod core = new CoreMod();
ModCstrike cstrike = new ModCstrike();
ModDoD dod = new ModDoD();
ModEsf esf = new ModEsf();
ModNs ns = new ModNs();
ModTFC tfc = new ModTFC();
ModTs ts = new ModTs();
m_Mods.Add(core);
m_Mods.Add(cstrike);
m_Mods.Add(dod);
m_Mods.Add(esf);
m_Mods.Add(ns);
m_Mods.Add(tfc);
m_Mods.Add(ts);
}
public override sealed string GetName()
{
return "amxmodx-1.5";
}
}
}