Merge branch 'aids' of git-subsonics-andreas:andreas/hGameTest into aids

This commit is contained in:
andreas 2021-03-31 15:10:49 +02:00
commit 75d8032b5d
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
package game.ui;
typedef CVar = {
var name:String;
var type:CVarType;
var value:Dynamic;
@:optional var callback:Void -> Void;
};

View File

@ -0,0 +1,9 @@
package game.ui;
enum CVarType {
CInt;
CFloat;
CString;
CBool;
CCmd;
}