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

import Battlemap
import Battlemap.Direction
import Battlemap.Location

import Character

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