|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class LevelGroupButtonFixer : MonoBehaviour
|
|
{
|
|
public List<LevelGroupButton> buttons;
|
|
public void UIUpdater()
|
|
{
|
|
for(int i=0;i<buttons.Count; i++)
|
|
{
|
|
buttons[i].UpdateUI();
|
|
}
|
|
}
|
|
}
|