random pipe position working

This commit is contained in:
dhain 2022-12-06 09:45:43 +01:00
parent 4a40175884
commit 8e19fb7cfb
5 changed files with 59 additions and 17 deletions

View file

@ -1,5 +1,8 @@
class Pipe extends Entity {
update() {
constructor(position: Position, width: number, height: number) {
super(position, width, height, 0);
}
update(): void {
}
}