Example #1
0
 private Bounds BoundsToJson(Bounds bounds)
 {
     var json = Std.NewObject();
     json.X = bounds.X;
     json.Y = bounds.Y;
     json.W = bounds.W;
     json.H = bounds.H;
     return json;
 }