space-pew/SpacePew/Models/Weapons/SecondaryCannon.cs
Magnus von Wachenfeldt 2a9d8ce416 move to github
2015-12-04 10:23:49 +01:00

24 lines
384 B
C#

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;
}
}
}
}