23 lines
No EOL
475 B
TypeScript
23 lines
No EOL
475 B
TypeScript
import {Layout} from "../Layout";
|
|
import {GrbToFix} from "../Layers/GrbToFix";
|
|
import { BikePumps } from "../Layers/BikePumps";
|
|
|
|
export class GRB extends Layout {
|
|
constructor() {
|
|
super(
|
|
"pomp",
|
|
"Grb import fix tool",
|
|
[new BikePumps()],
|
|
15,
|
|
51.2083,
|
|
3.2279,
|
|
|
|
|
|
"<h3>GRB Fix tool</h3>\n" +
|
|
"\n" +
|
|
"Expert use only"
|
|
|
|
,
|
|
"", "");
|
|
}
|
|
} |