24 lines
716 B
Java
24 lines
716 B
Java
package com.micle.loginprotection;
|
|
|
|
import com.micle.loginprotection.data.ProtectedPlayer;
|
|
import com.micle.loginprotection.data.ProtectedPlayers;
|
|
import com.micle.loginprotection.setup.Registration;
|
|
import net.minecraftforge.common.MinecraftForge;
|
|
import net.minecraftforge.fml.common.Mod;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
@Mod(LoginProtection.MOD_ID)
|
|
public class LoginProtection {
|
|
public static final String MOD_ID = "loginprotection";
|
|
public static ProtectedPlayers protected_players = new ProtectedPlayers();
|
|
public static boolean has_pressed_key = false;
|
|
|
|
public LoginProtection() {
|
|
Registration.register();
|
|
|
|
MinecraftForge.EVENT_BUS.register(this);
|
|
}
|
|
}
|