Add actions and implement select square action
optics!
This commit is contained in:
parent
c2df3477fd
commit
c8e43990ed
6 changed files with 39 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue