adding extra file for building command line tool, adding tab key value correction
This commit is contained in:
@@ -2,7 +2,7 @@ package lime.utils;
|
||||
|
||||
class Keys {
|
||||
|
||||
public var tab : Int = 8;
|
||||
public var tab : Int = 9;
|
||||
public var enter : Int = 13;
|
||||
public var meta : Int = 15;
|
||||
public var shift : Int = 16;
|
||||
|
||||
27
script/src/project/Haxelib.hx
Normal file
27
script/src/project/Haxelib.hx
Normal 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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user