mapcomplete/Customizations/Layouts/All.ts

19 lines
446 B
TypeScript
Raw Normal View History

2020-07-12 21:19:05 +00:00
import {Layout} from "../Layout";
export class All extends Layout{
constructor() {
super(
"all",
2020-07-20 22:07:04 +00:00
["en"],
2020-07-12 21:19:05 +00:00
"All quest layers",
[],
15,
51.2,
3.2,
"<h3>All quests of MapComplete</h3>" +
"This is a mixed bag. Some quests might be hard or for experts to answer only",
"Please log in",
""
);
}
}