Files
esengine/source/src/Math/Rectangle.ts

13 lines
291 B
TypeScript
Raw Normal View History

2020-06-09 22:32:18 +08:00
class Rectangle {
public x: number;
public y: number;
public width: number;
public height: number;
constructor(x: number, y: number, width: number, height: number){
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
}