blob: 782fd5040d930410c8d42294d8e6d9343ff925ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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)
|