space-pew/SpacePew/Models/Weapons/SecondaryCannon.cs

24 lines
384 B
C#
Raw Normal View History

2015-12-04 10:23:49 +01:00
namespace SpacePew.Models.Weapons
{
/// <summary>
/// A slower version of the cannon, should be used for powerful projectiles like the homing bullets to even things out
/// </summary>
public class SecondaryCannon : Cannon
{
public override float HeatGeneration
{
get
{
return 1f;
}
}
public override int Delay
{
get
{
return 80;
}
}
}
}