added VoiceInfo stuff

This commit is contained in:
Chris Forbes
2009-12-05 15:17:22 +13:00
parent 2435e48a82
commit 3294956c2f
5 changed files with 87 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpenRa.Game.GameRules
{
class VoiceInfo
{
public readonly string[] SovietVariants = { ".aud" };
public readonly string[] AlliedVariants = { ".aud" };
public readonly string[] Select = {};
public readonly string[] Move = {};
public readonly string[] Attack = null;
}
}