summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/rectangles/engine/map/tools/_base.js
blob: 17b247d237a44949152dd4a0f7dab64b7a7d8aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
var MapTool = Fiber.extend(function(base){
	var exports = {
	  recenterCursor: true,
	  down: function(e, cursor){},
	  move: function(e, cursor){},
	  drag: function(e, cursor){},
	  up: function(e, cursor, new_cursor){},
	  cancel: function(){},
  }
  return exports
})