Files
DSTEngine/hGameTest/src/game/Bind.hx

10 lines
195 B
Haxe

package game;
class Bind{
public var key:Int;
public var action:String;
public function new(key:Int, action:String){
this.key = key;
this.action = action;
}
}