SizeF_2D.ts 203 B

12345678
  1. export class SizeF_2D {
  2. public Width: number;
  3. public Height: number;
  4. constructor(width: number = 0, height: number = 0) {
  5. this.Width = width;
  6. this.Height = height;
  7. }
  8. }