changed a bunch of fucking shit

This commit is contained in:
2021-03-24 21:59:05 +01:00
parent 4272c12ec1
commit 5723371944
11 changed files with 278 additions and 33 deletions

View File

@@ -1,8 +1,10 @@
package game;
class Bind{
public function new(){
public var key:Int;
public var action:String;
public function new(key:Int, action:String){
this.key = key;
this.action = action;
}
}