diff options
author | Griffin Smith <root@gws.fyi> | 2019-09-02T17·56-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-09-02T17·59-0400 |
commit | 4d270712aecf1b61249086718852b96968de2bd8 (patch) | |
tree | bbceb63b5b7e5ade5025472f343b1ff1b3b96c65 /xanthous.cabal | |
parent | 243104c410da7e2064972b98cda757558b4e3913 (diff) |
Add raws, loaded statically from a folder
Add raw types with support for both creatures and items, loaded statically from a "raws" folder just like in the Rust version.
Diffstat (limited to 'xanthous.cabal')
-rw-r--r-- | xanthous.cabal | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/xanthous.cabal b/xanthous.cabal index 8c6fe406ae1e..390d0dbfc33e 100644 --- a/xanthous.cabal +++ b/xanthous.cabal @@ -4,7 +4,7 @@ cabal-version: 1.12 -- -- see: https://github.com/sol/hpack -- --- hash: 5d750bf0bb5c6d278928f6c9606427754a444344fd769f50c02b776dedf0e771 +-- hash: 897c9cda436c62269dd43a0fc47226b24a310e52522fa6ebfe18cedc2394f6ea name: xanthous version: 0.1.0.0 @@ -36,6 +36,8 @@ library Xanthous.Data.EntityMap Xanthous.Entities Xanthous.Entities.Character + Xanthous.Entities.Raws + Xanthous.Entities.RawTypes Xanthous.Entities.SomeEntity Xanthous.Game Xanthous.Game.Draw @@ -65,6 +67,7 @@ library , data-default , deepseq , file-embed + , filepath , generic-arbitrary , generic-monoid , groups @@ -92,6 +95,8 @@ executable xanthous Xanthous.Data.EntityMap Xanthous.Entities Xanthous.Entities.Character + Xanthous.Entities.Raws + Xanthous.Entities.RawTypes Xanthous.Entities.SomeEntity Xanthous.Game Xanthous.Game.Draw @@ -120,6 +125,7 @@ executable xanthous , data-default , deepseq , file-embed + , filepath , generic-arbitrary , generic-monoid , groups @@ -145,6 +151,7 @@ test-suite test Test.Prelude Xanthous.Data.EntityMapSpec Xanthous.DataSpec + Xanthous.Entities.RawsSpec Xanthous.GameSpec Xanthous.MessageSpec Xanthous.OrphansSpec @@ -166,6 +173,7 @@ test-suite test , data-default , deepseq , file-embed + , filepath , generic-arbitrary , generic-monoid , groups |