summaryrefslogtreecommitdiff
path: root/Penguloon/Objects/GoldPenguinObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Penguloon/Objects/GoldPenguinObject.cs')
-rw-r--r--Penguloon/Objects/GoldPenguinObject.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Penguloon/Objects/GoldPenguinObject.cs b/Penguloon/Objects/GoldPenguinObject.cs
index fc5eb62..c406e2c 100644
--- a/Penguloon/Objects/GoldPenguinObject.cs
+++ b/Penguloon/Objects/GoldPenguinObject.cs
@@ -16,6 +16,15 @@ namespace Penguloon.Objects
this.AttackSpeedMS = 500;
}
+ public GoldPenguinObject(Map map) : base(map)
+ {
+ this.Texture = ContentManager.GetTexture("Objects/penguin2");
+ this.TileSpanX = 1;
+ this.TileSpanY = 1;
+ this.Range = Map.TileWidth * 2.5f;
+ this.AttackSpeedMS = 500;
+ }
+
public override void DrawUnique(float deltaTime)
{