16 lines
315 B
C#
16 lines
315 B
C#
6 months ago
|
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();
|
||
|
}
|
||
|
}
|
||
|
}
|