diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2017-12-12 18:27:50 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2017-12-12 18:27:50 +0100 |
| commit | 60e8e48047e774a711fee35dfc58a7be993c3d88 (patch) | |
| tree | 272285ccd8730960db823d83e42d4985d34db69a /Penguloon/Levels/IceLevel.cs | |
| parent | b0a3f57a68a39c2b027158cdfc9384ddb84dfa38 (diff) | |
yos
Diffstat (limited to 'Penguloon/Levels/IceLevel.cs')
| -rw-r--r-- | Penguloon/Levels/IceLevel.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Penguloon/Levels/IceLevel.cs b/Penguloon/Levels/IceLevel.cs index 5f8b4c7..47569a8 100644 --- a/Penguloon/Levels/IceLevel.cs +++ b/Penguloon/Levels/IceLevel.cs @@ -1,4 +1,6 @@ -using Microsoft.Xna.Framework.Input.Touch; +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Input.Touch; +using Penguloon.Enemies; using Penguloon.Scenes; namespace Penguloon.Levels @@ -23,6 +25,9 @@ namespace Penguloon.Levels public override void CreateMap() { Map = new Map(ParentScene); + Map.SpawnPoint = new Vector2(1 * Map.TileWidth, -1 * Map.TileHeight); + Map.SpawnPointTargetPos = new Vector2(1 * Map.TileWidth, 0 * Map.TileHeight); + Map.FinishPoint = new Vector2(18 * Map.TileWidth, 2 * Map.TileHeight); Tile OO = new Tile(0, Direction.None); |
