summaryrefslogtreecommitdiffstats
path: root/Event.hs
blob: 1aa718a5c6f513c7ccc2e0e360c4a04afc76428a (plain)
1
2
3
4
5
6
7
8
9
10
11
module Event where

import Blessings
import Scanner

data Event =
    EFlash (Blessings String) |
    EScan Scan |
    EReload |
    EResize Int Int
  deriving Show