summaryrefslogtreecommitdiff
blob: 5debff1433a9a7ecb3beed64670b3018081026f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Event exposing (Type(..))

import Battlemap.Direction
import Battlemap.Location

import Character

type Type =
   DirectionRequested Battlemap.Direction.Type
   | TileSelected Battlemap.Location.Ref
   | CharacterSelected Character.Ref
   | TurnEnded