You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
327 B

  1. module Datatypes (Cell(..), Board(..), Unit(..), Game(..)) where
  2. import Data.Hashable (Hashable(..))
  3. import qualified Data.List as List
  4. import Data.Set (Set)
  5. import qualified Data.Set as Set
  6. import Datatypes.Board (Board(..))
  7. import Datatypes.Cell (Cell(..))
  8. import Datatypes.Game (Game(..))
  9. import Datatypes.Unit (Unit(..))