From d3f3890dc5408581eb6181125c871d1cf2c0e18f Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Sun, 25 Aug 2019 13:28:10 -0400 Subject: An @-sign in a box, in haskell Initial commit of a Haskell version of Xanthous, written using Brick and built with Nix. This is so much nicer and so much easier --- src/Xanthous/Resource.hs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/Xanthous/Resource.hs (limited to 'src/Xanthous/Resource.hs') diff --git a/src/Xanthous/Resource.hs b/src/Xanthous/Resource.hs new file mode 100644 index 000000000000..2310a68cc26a --- /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) -- cgit 1.4.1