コード例 #1
0
 void Rect(int x1, int y1, int x2, int y2, TilemapDrawingUtils.PlotFunction plot)
 {
     TilemapDrawingUtils.Rect(x1, y1, x2, y2, false, plot);
 }
コード例 #2
0
 void Line(int x1, int y1, int x2, int y2, TilemapDrawingUtils.PlotFunction plot)
 {
     TilemapDrawingUtils.Line(x1, y1, x2, y2, plot);
 }
コード例 #3
0
 void Ellipse(int x1, int y1, int x2, int y2, TilemapDrawingUtils.PlotFunction plot)
 {
     TilemapDrawingUtils.Ellipse(x1, y1, x2, y2, false, plot);
 }