You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
478 B
Java
19 lines
478 B
Java
package net.minecraft.command;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
@SideOnly(Side.SERVER)
|
|
public class ServerCommand
|
|
{
|
|
/** The command string. */
|
|
public final String command;
|
|
public final ICommandSender sender;
|
|
private static final String __OBFID = "CL_00001779";
|
|
|
|
public ServerCommand(String p_i1491_1_, ICommandSender p_i1491_2_)
|
|
{
|
|
this.command = p_i1491_1_;
|
|
this.sender = p_i1491_2_;
|
|
}
|
|
} |