summaryrefslogtreecommitdiffstats
path: root/src/model/Direction.coffee
blob: 5c49c80b8cbdf89e5292b2bdfd8aeaa919a074af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'


Direction =
        NORTH: 0
        EAST: 1
        SOUTH: 2
        WEST: 3

        reverse: (d) -> (d+2)%4


module.exports = Direction