diff options
Diffstat (limited to 'Penguloon/Objects/PenguinObject.cs')
| -rw-r--r-- | Penguloon/Objects/PenguinObject.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Penguloon/Objects/PenguinObject.cs b/Penguloon/Objects/PenguinObject.cs index adbdc7e..abb3c3a 100644 --- a/Penguloon/Objects/PenguinObject.cs +++ b/Penguloon/Objects/PenguinObject.cs @@ -16,6 +16,15 @@ namespace Penguloon.Objects this.AttackSpeedMS = 1000; } + public PenguinObject(Map map) : base(map) + { + this.Texture = ContentManager.GetTexture("Objects/penguin1"); + this.TileSpanX = 1; + this.TileSpanY = 1; + this.Range = Map.TileWidth * 2; + this.AttackSpeedMS = 1000; + } + public override void DrawUnique(float deltaTime) { |
