blob: 9732ddbe91ee4744331bac02d9a9b785c213b0e3 (
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
60
61
|
/*
* Copyright (c) 2018, 2019, 2020 shedaniel
* Licensed under the MIT License (the "License").
*/
package me.shedaniel.rei.api;
import me.shedaniel.rei.RoughlyEnoughItemsCore;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.screen.Screen;
import org.jetbrains.annotations.ApiStatus;
import java.util.List;
public interface ConfigManager {
static ConfigManager getInstance() {
return RoughlyEnoughItemsCore.getConfigManager();
}
@ApiStatus.ScheduledForRemoval
@Deprecated
default List<EntryStack> getFavorites() {
return ConfigObject.getInstance().getFavorites();
}
/**
* Saves the config.
*/
void saveConfig();
/**
* 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
*/
default void openConfigScreen(Screen parent) {
MinecraftClient.getInstance().openScreen(getConfigScreen(parent));
}
/**
* Gets the config screen
*
* @param parent the screen shown before
* @return the config screen
*/
Screen getConfigScreen(Screen parent);
}
|