From 4435864da3a2ee7672357b14eac4944551a5be37 Mon Sep 17 00:00:00 2001 From: underscorediscovery Date: Tue, 23 Jul 2013 06:52:49 -0230 Subject: [PATCH] adding extra file for building command line tool, adding tab key value correction --- lime/utils/Keys.hx | 2 +- script/src/project/Haxelib.hx | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 script/src/project/Haxelib.hx diff --git a/lime/utils/Keys.hx b/lime/utils/Keys.hx index 196b7bd66..6eb28d4f7 100644 --- a/lime/utils/Keys.hx +++ b/lime/utils/Keys.hx @@ -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; diff --git a/script/src/project/Haxelib.hx b/script/src/project/Haxelib.hx new file mode 100644 index 000000000..f8656a485 --- /dev/null +++ b/script/src/project/Haxelib.hx @@ -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; + + } + + +} \ No newline at end of file