Add actions and implement select square action

optics!
This commit is contained in:
Sidharth Kulkarni 2026-05-06 21:57:55 -07:00
parent c2df3477fd
commit c8e43990ed
Signed by: skulk
SSH key fingerprint: SHA256:Jby+S9d1WmwqnXIrngHgccYNHz+cYquxN1zm3ym3Kbg
6 changed files with 39 additions and 3 deletions

View file

@ -18,6 +18,7 @@ build-type: Simple
library
exposed-modules:
Game
Types.BoardAction
Types.BoardPosition
Types.GameBoard
Types.GameMode
@ -34,6 +35,9 @@ library
MultiParamTypeClasses
TypeFamilies
UndecidableInstances
OverloadedLabels
NamedFieldPuns
TypeOperators
ghc-options: -Wall
build-depends:
array
@ -61,6 +65,9 @@ executable numbersquare
MultiParamTypeClasses
TypeFamilies
UndecidableInstances
OverloadedLabels
NamedFieldPuns
TypeOperators
ghc-options: -Wall
build-depends:
array
@ -90,6 +97,9 @@ test-suite numberspec-test
MultiParamTypeClasses
TypeFamilies
UndecidableInstances
OverloadedLabels
NamedFieldPuns
TypeOperators
ghc-options: -Wall -threaded -O0
build-depends:
QuickCheck