Fork of Poseidon providing Bukkit #1060 to older Beta versions (b1.0-b1.7.3)
at develop 12 lines 273 B view raw
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}