StartMenu!
This commit is contained in:
21
Assets/Scripts/StartMenu/ThemeBundleTab.cs
Normal file
21
Assets/Scripts/StartMenu/ThemeBundleTab.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user