private static void DeleteContentFromCell(ICellComponent zelle)
    {
        IContentComponent content = zelle.GetComponentInChildren <IContentComponent>();

        if (content != null)
        {
            Object.Destroy(content.GameObject);
        }
    }