Add HUD
This commit is contained in:
@ -80,6 +80,10 @@ export class Size {
|
||||
this.w = w;
|
||||
this.h = h;
|
||||
}
|
||||
|
||||
add(other: Size) {
|
||||
return new Size(this.w + other.w, this.h + other.h);
|
||||
}
|
||||
}
|
||||
|
||||
export class Rect {
|
||||
|
Reference in New Issue
Block a user