amxmodx/installer/builder/Build.cs

49 lines
816 B
C#
Raw Normal View History

2005-08-24 07:13:57 +04:00
using System;
using System.Collections;
namespace AMXXRelease
{
//Class that iterates the different pieces
// to be completed over for the build
public class Build
{
protected ArrayList m_Mods;
2006-09-03 07:48:54 +04:00
protected Config m_Cfg;
2005-08-24 07:13:57 +04:00
2006-09-03 07:48:54 +04:00
public Build(Config cfg)
2005-08-24 07:13:57 +04:00
{
m_Mods = new ArrayList();
2006-09-03 07:48:54 +04:00
m_Cfg = cfg;
2005-08-24 07:13:57 +04:00
CoreMod core = new CoreMod();
2005-08-24 10:56:02 +04:00
ModCstrike cstrike = new ModCstrike();
2005-08-24 07:13:57 +04:00
2005-08-25 12:20:11 +04:00
m_Mods.Add(core);
2005-08-24 07:13:57 +04:00
m_Mods.Add(cstrike);
2006-09-03 07:48:54 +04:00
2007-08-03 21:17:54 +04:00
ModDoD dod = new ModDoD();
ModEsf esf = new ModEsf();
ModNs ns = new ModNs();
ModTFC tfc = new ModTFC();
ModTs ts = new ModTs();
m_Mods.Add(dod);
m_Mods.Add(esf);
m_Mods.Add(ns);
m_Mods.Add(tfc);
m_Mods.Add(ts);
2005-08-24 07:13:57 +04:00
}
public virtual int GetMods()
{
return m_Mods.Count;
}
public virtual AMod GetMod(int i)
{
return (AMod)m_Mods[i];
}
}
}