mirror of
https://github.com/TeamMidnightDust/MidnightControls.git
synced 2025-12-13 15:25:08 +01:00
- Automatic downloading of mappings from https://github.com/gabomdq/SDL_GameControllerDB - Change some default settings - Fix OkZoomer compat by @akemin-dayo - German translations (by myself) - Add contributors to fabric.mod.json - Fix some issues
28 lines
797 B
Java
28 lines
797 B
Java
/*
|
|
* Copyright © 2021 LambdAurora <aurora42lambda@gmail.com>
|
|
*
|
|
* This file is part of midnightcontrols.
|
|
*
|
|
* Licensed under the MIT license. For more information,
|
|
* see the LICENSE file.
|
|
*/
|
|
|
|
package eu.midnightdust.midnightcontrols;
|
|
|
|
|
|
import net.minecraft.util.Identifier;
|
|
|
|
/**
|
|
* Represents the constants used by MidnightControls.
|
|
*
|
|
* @author LambdAurora
|
|
* @version 1.1.0
|
|
* @since 1.1.0
|
|
*/
|
|
public class MidnightControlsConstants {
|
|
public static final String NAMESPACE = "midnightcontrols";
|
|
public static final Identifier CONTROLS_MODE_CHANNEL = new Identifier(NAMESPACE, "controls_mode");
|
|
public static final Identifier FEATURE_CHANNEL = new Identifier(NAMESPACE, "feature");
|
|
public static final Identifier HELLO_CHANNEL = new Identifier("lambdacontrols", "hello");
|
|
}
|