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