summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornsensfel <SpamShield0@noot-noot.org>2017-11-16 17:06:17 +0100
committernsensfel <SpamShield0@noot-noot.org>2017-11-16 17:06:17 +0100
commitefaf3ee3f4b2478079c7b9dde8f9e879956a460f (patch)
tree809dba1496ddd1c3058df0722a9fd962fd11f34b /src/battlemap_battlemap.erl
parent3cc9f85a8b84f6cb69b828a6510ece7f716a6b28 (diff)
Starting changes in the structure.
Diffstat (limited to 'src/battlemap_battlemap.erl')
-rw-r--r--src/battlemap_battlemap.erl22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/battlemap_battlemap.erl b/src/battlemap_battlemap.erl
deleted file mode 100644
index 64cf10d..0000000
--- a/src/battlemap_battlemap.erl
+++ /dev/null
@@ -1,22 +0,0 @@
--module(battlemap_battlemap).
--export([encode_in_json/1]).
-
-encode_in_json (
- {
- Width,
- Height,
- Tiles
- }
-) ->
- jiffy:encode(
- {
- [
- {<<"width">>, Width},
- {<<"height">>, Height},
- {
- <<"content">>,
- lists:map((fun ({ID, Cost}) -> [ID, Cost] end), Tiles)
- }
- ]
- }
- ).