package me.km.permissions; import net.minecraft.command.ICommand; import net.minecraft.command.ICommandSender; public class Permission { public static boolean has(ICommandSender cs, ICommand command) { return true; } public static boolean has(ICommandSender cs, Permissions perm) { return true; } }