Bike pumps added layer & layout

This commit is contained in:
Pieter Fiers 2020-07-07 16:00:27 +02:00
parent 41341470db
commit 75a3a70afa
6 changed files with 104 additions and 2 deletions

View file

@ -0,0 +1,23 @@
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"
,
"", "");
}
}