[client] add SettingsFrame

This commit is contained in:
2018-07-19 17:47:25 +03:00
parent 17289fde92
commit d0c796aab2
22 changed files with 549 additions and 34 deletions

View File

@@ -5,10 +5,10 @@ import haxe.ds.IntMap;
class Direction {
private static var directions:IntMap<Direction> = new IntMap<Direction>();
public static var LEFT(default, null) = new Direction(-1, 0);
public static var TOP(default, null) = new Direction(0, -1);
public static var RIGHT(default, null) = new Direction(1, 0);
public static var BOTTOM(default, null) = new Direction(0, 1);
public static var LEFT(default, never) = new Direction(-1, 0);
public static var TOP(default, never) = new Direction(0, -1);
public static var RIGHT(default, never) = new Direction(1, 0);
public static var BOTTOM(default, never) = new Direction(0, 1);
public var x(default, null):Int;
public var y(default, null):Int;