1234567891011121314151617 |
- 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;
- }
- }
|