# SquirrelSize

```typescript
export class SquirrelSize {
    height: number;
    width: number;

    constructor(width: number, height: number) {
        if (width != null) { this.width = width; }
        if (height != null) { this.height = height; }
    }
}
```
