HeavenStudioPlus/Assets/Scripts/LevelEditor/Theme.cs

29 lines
645 B
C#
Raw Normal View History

using System;
using UnityEngine;
namespace RhythmHeavenMania.Editor
{
[Serializable]
public class Theme
{
public string name;
public Properties properties;
[Serializable]
public class Properties
{
public string Layer1Col;
public string Layer2Col;
public string Layer3Col;
public string Layer4Col;
public string EventSelectedCol;
public string EventNormalCol;
public string BeatMarkerCol;
public string CurrentTimeMarkerCol;
public string BoxSelectionCol;
}
}
}