roguelike/src/Player.hs

13 lines
172 B
Haskell
Raw Normal View History

2021-02-13 00:06:26 +00:00
{-# LANGUAGE TemplateHaskell #-}
2021-02-11 22:40:00 +00:00
module Player where
2021-02-13 00:06:26 +00:00
import Lens.Micro.TH (makeLenses)
2021-02-18 17:25:13 +00:00
import Linear.V2
2021-02-13 00:06:26 +00:00
data Player = Player
2021-02-18 17:25:13 +00:00
{ _pos :: V2 Int
2021-02-13 00:06:26 +00:00
}
makeLenses ''Player