public void SetAction(AbstractPCAction action) { if (this.action != null && action != null && this.action.GetType() == action.GetType()) { return; } this.action = action; action.SetPC(this); }
public Type GetActionType() { return(action.GetType()); }