using System.Collections.Generic; using HK; using UnityEngine; namespace Runtime { public class ThemeManagement : MonoManager { public List themes = new List(); public ThemeBaseScriptableObject[] GetAllTheme() { return themes.ToArray(); } public ThemeBaseScriptableObject GetTheme(int i) { return themes[i]; } } }