public void AddAction(IGameAction action) { if (actions.Contains(action)) { return; } action.LinkTile(this); actions.Add(action); }