raycharles/src/Types.hs

13 lines
187 B
Haskell
Raw Permalink Normal View History

2018-10-25 21:31:21 +00:00
module Types where
import Linear
import Graphics.Vty (Vty)
2018-10-25 21:31:21 +00:00
data State = State
{ pos :: V2 Double
, rot :: Double
, stop :: Bool
, output :: String
, vty :: Vty
2018-10-25 21:31:21 +00:00
}