20 lines
481 B
C#
20 lines
481 B
C#
using System.Collections.Generic;
|
|
using HK;
|
|
using UnityEngine;
|
|
|
|
namespace Runtime
|
|
{
|
|
public class ThemeManagement : MonoManager<ThemeManagement>
|
|
{
|
|
public List<ThemeBaseScriptableObject> themes = new List<ThemeBaseScriptableObject>();
|
|
|
|
public ThemeBaseScriptableObject[] GetAllTheme()
|
|
{
|
|
return themes.ToArray();
|
|
}
|
|
public ThemeBaseScriptableObject GetTheme(int i)
|
|
{
|
|
return themes[i];
|
|
}
|
|
}
|
|
} |