コード例 #1
0
 public MapExit(short mapId, Rect rect, short posX, short posY)
 {
     MapId     = mapId;
     Rect      = rect;
     TargetPos = new Vector2s(posX, posY);
 }
コード例 #2
0
ファイル: Util.cs プロジェクト: KianBennett/SolsticeServer
 public Rect(short minX, short minY, short maxX, short maxY)
 {
     Min = new Vector2s(minX, minY);
     Max = new Vector2s(maxX, maxY);
 }