about summary refs log tree commit diff
path: root/src/Xanthous/Resource.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Xanthous/Resource.hs')
-rw-r--r--src/Xanthous/Resource.hs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Xanthous/Resource.hs b/src/Xanthous/Resource.hs
new file mode 100644
index 0000000000..2310a68cc2
--- /dev/null
+++ b/src/Xanthous/Resource.hs
@@ -0,0 +1,11 @@
+module Xanthous.Resource
+  ( Name(..)
+  ) where
+
+import Xanthous.Prelude
+
+data Name = MapViewport
+            -- ^ The main viewport where we display the game content
+          | MessageBox
+            -- ^ The box where we display messages to the user
+  deriving stock (Show, Eq, Ord)