[client] add SettingsFrame
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user