about summary refs log blame commit diff
path: root/src/Xanthous/Resource.hs
blob: 782fd5040d930410c8d42294d8e6d9343ff925ee (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                                                    

                              

                                                              
                  
                                
module Xanthous.Resource
  ( Name(..)
  ) where

import Xanthous.Prelude

data Name = MapViewport
            -- ^ The main viewport where we display the game content
          | Character
            -- ^ The character
          | MessageBox
            -- ^ The box where we display messages to the user
          | Prompt
  deriving stock (Show, Eq, Ord)