summaryrefslogtreecommitdiffstats
path: root/src/model/Position.coffee
blob: 08bb9991943e42ec5bf35720c17c4e5bd8b816da (plain)
1
2
3
4
5
6
7
8
9
10
'use strict'


class Position
        constructor: (@x, @y) ->

        asString: => "#{@x},#{@y}"


module.exports = Position