-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgamenumber.cabal
50 lines (48 loc) · 1.74 KB
/
gamenumber.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: gamenumber
version: 0.0.1
synopsis: simple game
description: GameNumber is simple game with AI players
license: GPL-3
license-file: LICENSE
author: Evgeny Pashkin
maintainer: [email protected]
copyright: (C) 2014 Evgeny Pashkin
category: Game
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
build-depends: base >=4.6,
random,
array,
containers,
mtl,
cond,
bytestring,
binary,
lens
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: GameLogic
other-modules:
GameLogic.Logic,
GameLogic.StartLogic,
GameLogic.Util,
GameLogic.Data.Facade,
GameLogic.Data.Cell,
GameLogic.Data.Game,
GameLogic.Data.Players,
GameLogic.Data.Settings,
GameLogic.Data.World,
GameLogic.Data.GameState,
GameLogic.AI.Actions,
GameLogic.AI.PossibleAction,
GameLogic.Action.Attack,
GameLogic.Action.Defend,
GameLogic.Action.ModifyPlayer,
GameLogic.Action.Shield,
GameLogic.Util.Shuffle,
GameLogic.Util.RandomState
source-repository head
type: git
location: git://github.com/EPashkin/gamenumber.git