summaryrefslogtreecommitdiff
path: root/lib/Tiled.hs
diff options
context:
space:
mode:
authorstuebinm2022-02-28 00:39:54 +0100
committerstuebinm2022-02-28 00:39:54 +0100
commit8a201e8658c9365d301a7cda9077ddf005b014c9 (patch)
treec2f400c9c7d52c179682e57061709391b0ca05bd /lib/Tiled.hs
parent55c2994e856ceaf82edd06587e2faffb7c58950c (diff)
separate tiled modules out into own package
Diffstat (limited to '')
-rw-r--r--tiled/Data/Tiled.hs (renamed from lib/Tiled.hs)3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Tiled.hs b/tiled/Data/Tiled.hs
index 3162dfd..046a080 100644
--- a/lib/Tiled.hs
+++ b/tiled/Data/Tiled.hs
@@ -15,7 +15,7 @@
-- cover some of the types and records that are available in the format. For
-- those you should read the TMX documentation at
-- http://doc.mapeditor.org/en/latest/reference/tmx-map-format/
-module Tiled where
+module Data.Tiled where
import Universum
@@ -383,6 +383,7 @@ instance ToJSON Tiledmap where
toJSON = genericToJSON (aesonOptions 8)
data LoadResult = Loaded Tiledmap | IOErr String | DecodeErr String
+ deriving Show
-- | Load a Tiled map from the given 'FilePath'.
loadTiledmap :: FilePath -> IO LoadResult