aboutsummaryrefslogtreecommitdiff
path: root/V3/Map/ObjectLayer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'V3/Map/ObjectLayer.cs')
-rw-r--r--V3/Map/ObjectLayer.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/V3/Map/ObjectLayer.cs b/V3/Map/ObjectLayer.cs
new file mode 100644
index 0000000..0e9d13c
--- /dev/null
+++ b/V3/Map/ObjectLayer.cs
@@ -0,0 +1,16 @@
+using System.Collections.Generic;
+
+namespace V3.Map
+{
+ /// <summary>
+ /// The map objects which are the same layer as the moving creatutes.
+ /// Buildings, flowers, trees etc.
+ /// </summary>
+ public sealed class ObjectLayer : AbstractLayer
+ {
+ public ObjectLayer(int tileWidth, int tileHeight, int mapWidth, int mapHeight, int[,] tileArray, SortedList<int, Tileset> tilesets)
+ : base(tileWidth, tileHeight, mapWidth, mapHeight, tileArray, tilesets)
+ {
+ }
+ }
+} \ No newline at end of file