adding extra file for building command line tool, adding tab key value correction

This commit is contained in:
underscorediscovery
2013-07-23 06:52:49 -02:30
parent 81b41c642b
commit 4435864da3
2 changed files with 28 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
package project;
class Haxelib {
public var name:String;
public var version:String;
public function new (name:String, version:String = "") {
this.name = name;
this.version = version;
}
public function clone ():Haxelib {
var haxelib = new Haxelib (name, version);
return haxelib;
}
}