summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2017-11-28 17:14:02 +0100 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2017-11-28 17:14:02 +0100 |
commit | f539b7072c357339328d9bfd54f1f1ed51828586 (patch) | |
tree | b6205dd79c78090831e812aceac177d2a9f35d28 /src/tile.erl | |
parent | 80358376b9300a0d73cb8b62dfa9fdd65240ca66 (diff) |
Trying to tidy up this mess.
Diffstat (limited to 'src/tile.erl')
-rw-r--r-- | src/tile.erl | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/tile.erl b/src/tile.erl deleted file mode 100644 index cb5811b..0000000 --- a/src/tile.erl +++ /dev/null @@ -1,15 +0,0 @@ --module(tile). --export -( - [ - get_cost/1, - cost_when_oob/0 - ] -). -cost_when_oob () -> 255. - -get_cost (N) -> - if - (N =< 200) -> (N + 1); - true -> cost_when_oob() - end. |