blob: 08951a0610bd2afccd6bd70e4f5a68a787ed546d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Copyright (c) 2018, 2019, 2020 shedaniel
* Licensed under the MIT License (the "License").
*/
package me.shedaniel.rei;
import io.github.prospector.modmenu.api.ConfigScreenFactory;
import io.github.prospector.modmenu.api.ModMenuApi;
import me.shedaniel.rei.api.ConfigManager;
public class REIModMenuEntryPoint implements ModMenuApi {
@Override
public String getModId() {
return "roughlyenoughitems";
}
@Override
public ConfigScreenFactory<?> getModConfigScreenFactory() {
return parent -> ConfigManager.getInstance().getConfigScreen(parent);
}
}
|