nyx-game-1.0.1.0: A bullet-hell game made with SDL2.

Safe HaskellSafe
LanguageHaskell2010

Play.Engine.Types

Documentation

type Point a = V2 a Source #

type Size = V2 Int Source #

x :: Lens' (V2 a) a Source #

y :: Lens' (V2 a) a Source #

pattern Point :: a -> a -> V2 a Source #

pointToTuple :: Point a -> (a, a) Source #