roguelike/src/Player.hs

13 lines
164 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)
data Player = Player
{ _x :: Int
, _y :: Int
}
makeLenses ''Player