From ff30178f505c69bc70b0770a3220ebd6d4706c74 Mon Sep 17 00:00:00 2001 From: aldrikboy Date: Thu, 14 Dec 2017 16:39:16 +0100 Subject: dab --- Penguloon/Objects/PenguinObject.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Penguloon/Objects/PenguinObject.cs (limited to 'Penguloon/Objects/PenguinObject.cs') diff --git a/Penguloon/Objects/PenguinObject.cs b/Penguloon/Objects/PenguinObject.cs new file mode 100644 index 0000000..e035f70 --- /dev/null +++ b/Penguloon/Objects/PenguinObject.cs @@ -0,0 +1,16 @@ +using Microsoft.Xna.Framework; +using Penguloon.Levels; + +namespace Penguloon.Objects +{ + class PenguinObject : ObjectBase + { + public PenguinObject(Vector2 position, Map map) : base(position, map) + { + this.Texture = ContentManager.GetTexture("Objects/penguin1"); + this.TileSpanX = 1; + this.TileSpanY = 1; + this.Range = Map.TileWidth * 2; + } + } +} \ No newline at end of file -- cgit v1.2.3-70-g09d2