Files
ichni_Creator_Studio/Assets/Scripts/StartMenu/ThemeBundleTab.cs
SoulliesOfficial e0ae43c25c StartMenu!
2025-03-08 14:21:10 -05:00

21 lines
565 B
C#

using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
namespace Ichni.StartMenu
{
public class ThemeBundleTab : MonoBehaviour
{
public ThemeBundleAbstract connectedThemeBundle;
public TMP_Text titleText;
public Toggle toggle;
public void SetUpTab(ThemeBundleAbstract themeBundleAbstract)
{
this.connectedThemeBundle = themeBundleAbstract;
this.titleText.text = themeBundleAbstract.displayName;
}
}
}