Started implementing options

This commit is contained in:
Devine Lu Linvega
2018-08-03 12:53:26 +12:00
parent 6027918884
commit 9eabe68ba3
5 changed files with 66 additions and 66 deletions

View File

@@ -1,7 +1,8 @@
function Cursor()
{
this.pos = {x:0,y:0},
this.translation = null,
this.pos = {x:0,y:0};
this.translation = null;
this.operation = null;
this.translate = function(from = null,to = null, multi = false)
{