blob: 2778368597f90515f3009c8a888532482efbd49d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/*
* Roughly Enough Items by Danielshe.
* Licensed under the MIT License.
*/
package me.shedaniel.rei.api;
import me.shedaniel.rei.RoughlyEnoughItemsCore;
import net.minecraft.client.gui.screen.Screen;
import java.io.IOException;
public interface ConfigManager {
@SuppressWarnings("deprecation")
static ConfigManager getInstance() {
return RoughlyEnoughItemsCore.getConfigManager();
}
/**
* Saves the config.
*/
void saveConfig();
/**
* Gets the config instance
*
* @return the config instance
*/
ConfigObject getConfig();
/**
* Gets if craftable only filter is enabled
*
* @return whether craftable only filter is enabled
*/
boolean isCraftableOnlyEnabled();
/**
* Toggles the craftable only filter
*/
void toggleCraftableOnly();
/**
* Opens the config screen
*
* @param parent the screen shown before
*/
void openConfigScreen(Screen parent);
/**
* Gets the config screen
*
* @param parent the screen shown before
* @return the config screen
*/
Screen getConfigScreen(Screen parent);
}
|