Permission.java 347 B

1234567891011121314151617
  1. package me.km.permissions;
  2. import net.minecraft.command.ICommand;
  3. import net.minecraft.command.ICommandSender;
  4. public class Permission
  5. {
  6. public static boolean has(ICommandSender cs, ICommand command)
  7. {
  8. return true;
  9. }
  10. public static boolean has(ICommandSender cs, Permissions perm)
  11. {
  12. return true;
  13. }
  14. }