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


                        
                                                                                
                       



                                                                                


                                                                    

                              

                                                              
                  
                                  




                                                   
--------------------------------------------------------------------------------
module Xanthous.Resource
  ( Name(..)
  ) where
--------------------------------------------------------------------------------
import Xanthous.Prelude
--------------------------------------------------------------------------------
import Test.QuickCheck
import Test.QuickCheck.Arbitrary.Generic
--------------------------------------------------------------------------------

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
            -- ^ The game's prompt
  deriving stock (Show, Eq, Ord, Generic)
  deriving anyclass (NFData, CoArbitrary, Function)

instance Arbitrary Name where
  arbitrary = genericArbitrary