summaryrefslogtreecommitdiff log msg author committer range path: root/src/tile.erlblob: cb5811b32f782d9cc64755d728dd6304bc3c8c77 (plain) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 -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.