Merge pull request #6162 from UberWaffe/WeaponDiplomacyCheck

Closes #5618
This commit is contained in:
Matthias Mailänder
2014-08-30 09:39:05 +02:00
5 changed files with 66 additions and 60 deletions

View File

@@ -22,7 +22,14 @@ namespace OpenRA.Traits
// depends on the order of pips in WorldRenderer.cs!
public enum PipType { Transparent, Green, Yellow, Red, Gray, Blue, Ammo, AmmoEmpty };
public enum TagType { None, Fake, Primary };
public enum Stance { Enemy, Neutral, Ally };
[Flags]
public enum Stance
{
Enemy = 1,
Neutral = 2,
Ally = 4,
}
[Flags]
public enum ImpactType