fix warnings; fix small bug in Bullet; fix impossible prereqs

This commit is contained in:
Chris Forbes
2010-01-08 12:18:31 +13:00
parent 69da6fdd2d
commit 49774e022d
8 changed files with 123 additions and 117 deletions

View File

@@ -3,12 +3,12 @@ namespace OpenRa.Game.GameRules
{
class AftermathInfo
{
public readonly int MTankDistance;
public readonly float QuakeUnitDamage;
public readonly float QuakeBuildingDamage;
public readonly float QuakeInfantryDamage;
public readonly int QuakeDelay;
public readonly int CarrierLaunchDelay;
public readonly int ChronoTankDuration;
public readonly int MTankDistance = 0;
public readonly float QuakeUnitDamage = 0f;
public readonly float QuakeBuildingDamage = 0f;
public readonly float QuakeInfantryDamage = 0f;
public readonly int QuakeDelay = 0;
public readonly int CarrierLaunchDelay = 0;
public readonly int ChronoTankDuration = 0;
}
}