blob: 782fd5040d930410c8d42294d8e6d9343ff925ee (
plain) (
tree)
|
|
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)
|