private static void onClickedAddTableButton(SleekButton button)
 {
     if (EditorSpawnsZombiesUI.tableNameField.text != string.Empty)
     {
         LevelZombies.addTable(EditorSpawnsZombiesUI.tableNameField.text);
         EditorSpawnsZombiesUI.tableNameField.text = string.Empty;
         EditorSpawnsZombiesUI.updateTables();
         EditorSpawnsZombiesUI.tableScrollBox.state = new Vector2(0f, float.MaxValue);
     }
 }