MotionMark
MotionMark copied to clipboard
Add a separate class for Size
This is sometimes confusing and hard to read.
this.size = new Point(randSize, randSize);
this.minPosition = this.size.center;
```
Can be
```
this.size = new Size(randSize, randSize);
this.minPosition = this.size.center;
```