1package net.minecraft.server; 2 3public class ServerCommand { 4 5 public final String command; 6 public final ICommandListener b; 7 8 public ServerCommand(String s, ICommandListener icommandlistener) { 9 this.command = s; 10 this.b = icommandlistener; 11 } 12}