15 lines
367 B
C#
15 lines
367 B
C#
|
|
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;
|
|
}
|
|
}
|