You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
582 B
Java

package net.brokenmoon.redcontrol;
import net.minecraft.util.Identifier;
public class RedControlNetworking {
public static final Identifier CPUGUI_PACKET_ID = new Identifier("redcontrol", "open_cpu_gui");
public static final Identifier MONITOR_PACKET_ID = new Identifier("redcontrol", "open_monitor");
public static final Identifier CPU_START = new Identifier("redcontrol", "start_cpu");
public static final Identifier CPU_STOP = new Identifier("redcontrol", "stop_cpu");
public static final Identifier CPU_RESET = new Identifier("redcontrol", "reset_cpu");
}