Files
OpenRA/OpenRa.Game/GameRules/WeaponInfo.cs
2010-01-17 09:30:53 +13:00

23 lines
652 B
C#
Executable File

namespace OpenRa.GameRules
{
class WeaponInfo
{
public readonly string Anim = null;
public readonly int Burst = 1;
public readonly bool Camera = false;
public readonly bool Charges = false;
public readonly int Damage = 0;
public readonly string Projectile = "Invisible";
public readonly int ROF = 1; // in 1/15 second units.
public readonly float Range = 0;
public readonly string Report = null;
public readonly int Speed = -1;
public readonly bool Supress = false;
public readonly bool TurboBoost = false;
public readonly string Warhead = null;
public readonly bool RenderAsTesla = false;
}
}