11 lines
143 B
Haskell
11 lines
143 B
Haskell
|
module Types where
|
||
|
|
||
|
import Linear
|
||
|
|
||
|
data State = State
|
||
|
{ pos :: V2 Double
|
||
|
, rot :: Double
|
||
|
, stop :: Bool
|
||
|
, output :: String
|
||
|
}
|