private static void onClickedRemoveTableButton(SleekButton button)
 {
     if ((int)EditorSpawns.selectedZombie < LevelZombies.tables.Count)
     {
         LevelZombies.removeTable();
         EditorSpawnsZombiesUI.updateTables();
         EditorSpawnsZombiesUI.updateSelection();
         EditorSpawnsZombiesUI.tableScrollBox.state = new Vector2(0f, float.MaxValue);
     }
 }