summaryrefslogtreecommitdiff log msg author committer range path: root/src/tile.erlblob: 2e9f562e9164aef97b919d605227061a3b8954b4 (plain) 1 2 3 4 5 6 7 8 9 10 11 12 -module(tile). -export ( [ get_cost/1, cost_when_oob/0 ] ). cost_when_oob () -> 255. get_cost(N) when (N =< 200) -> N; get_cost(_N) -> cost_when_oob().