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

30
installer/AMXXRelease/ABuild.cs Executable file
View File

@ -0,0 +1,30 @@
using System;
using System.Collections;
namespace AMXXRelease
{
/// <summary>
/// Summary description for ABuild.
/// </summary>
public abstract class ABuild
{
protected ArrayList m_Mods;
public ABuild()
{
m_Mods = new ArrayList();
}
public abstract string GetName();
public virtual int GetMods()
{
return m_Mods.Count;
}
public virtual AMod GetMod(int i)
{
return (AMod)m_Mods[i];
}
}
}