about summary refs log blame commit diff
path: root/src/Xanthous/Resource.hs
blob: 2310a68cc26a98ad8ed703e5869726b719ebf969 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
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)