25 lines
522 B
Java
25 lines
522 B
Java
|
package com.seodisparate.TurnBasedMinecraft.common;
|
||
|
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
|
||
|
public class EditingInfo
|
||
|
{
|
||
|
public EntityPlayer editor;
|
||
|
public EntityInfo entityInfo;
|
||
|
public boolean isPendingEntitySelection;
|
||
|
|
||
|
public EditingInfo()
|
||
|
{
|
||
|
editor = null;
|
||
|
entityInfo = null;
|
||
|
isPendingEntitySelection = true;
|
||
|
}
|
||
|
|
||
|
public EditingInfo(EntityPlayer player)
|
||
|
{
|
||
|
editor = player;
|
||
|
entityInfo = null;
|
||
|
isPendingEntitySelection = true;
|
||
|
}
|
||
|
}
|