diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2017-12-14 16:39:16 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2017-12-14 16:39:16 +0100 |
| commit | ff30178f505c69bc70b0770a3220ebd6d4706c74 (patch) | |
| tree | f51c85aa9b7728af5e79c26abd9de47228d888fa /Penguloon/Objects/PenguinObject.cs | |
| parent | 60e8e48047e774a711fee35dfc58a7be993c3d88 (diff) | |
dab
Diffstat (limited to 'Penguloon/Objects/PenguinObject.cs')
| -rw-r--r-- | Penguloon/Objects/PenguinObject.cs | 16 |
1 files changed, 16 insertions, 0 deletions
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 |
