23 lines
534 B
Plaintext
23 lines
534 B
Plaintext
cabal-version: 2.4
|
|
name: snake
|
|
version: 0.0
|
|
synopsis: A snake game using Dunai
|
|
author: Kiana Sheibani
|
|
license: MIT
|
|
build-type: Simple
|
|
|
|
executable snake
|
|
hs-source-dirs: src
|
|
main-is: Main.hs
|
|
other-modules: Game.Display,
|
|
Game.Engine,
|
|
Game.State,
|
|
Game.Utils
|
|
default-language: GHC2021
|
|
default-extensions: Arrows
|
|
build-depends: base,
|
|
mtl,
|
|
random,
|
|
dunai,
|
|
gloss
|