Files
loop/src/Dodge/Data/ScreenPos.hs
T
2023-05-10 01:45:29 +01:00

14 lines
255 B
Haskell

{-# LANGUAGE StrictData #-}
{-# LANGUAGE TemplateHaskell #-}
module Dodge.Data.ScreenPos
where
import Geometry.Data
import Control.Lens
data ScreenPos = ScreenPos
{ _spScreenOff :: Point2
, _spPixelOff :: Point2
}
makeLenses ''ScreenPos