2018-10-24 08:20:04 +00:00
|
|
|
package com.seodisparate.TurnBasedMinecraft.common;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
|
|
|
|
public class EditingInfo
|
|
|
|
{
|
|
|
|
public EntityPlayer editor;
|
|
|
|
public EntityInfo entityInfo;
|
|
|
|
public boolean isPendingEntitySelection;
|
2018-10-26 04:35:20 +00:00
|
|
|
public boolean isEditingCustomName;
|
2018-10-24 08:20:04 +00:00
|
|
|
|
|
|
|
public EditingInfo()
|
|
|
|
{
|
|
|
|
editor = null;
|
|
|
|
entityInfo = null;
|
|
|
|
isPendingEntitySelection = true;
|
2018-10-26 04:35:20 +00:00
|
|
|
isEditingCustomName = false;
|
2018-10-24 08:20:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public EditingInfo(EntityPlayer player)
|
|
|
|
{
|
|
|
|
editor = player;
|
|
|
|
entityInfo = null;
|
|
|
|
isPendingEntitySelection = true;
|
2018-10-26 04:35:20 +00:00
|
|
|
isEditingCustomName = false;
|
2018-10-24 08:20:04 +00:00
|
|
|
}
|
|
|
|
}
|