8 lines
No EOL
175 B
TypeScript
8 lines
No EOL
175 B
TypeScript
class Pipe extends Entity {
|
|
constructor(position: Position, width: number, height: number) {
|
|
super(position, width, height, 0);
|
|
}
|
|
|
|
update(): void {
|
|
}
|
|
} |