blob: aa9020903cfc1e2916a0977d8116cdba65f49e3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
deriving stock (Show, Eq, Ord)
|