mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
32 lines
No EOL
728 B
C#
32 lines
No EOL
728 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace RhythmHeavenMania.Editor
|
|
{
|
|
[Serializable]
|
|
public class Theme
|
|
{
|
|
public string name;
|
|
public Properties properties;
|
|
|
|
[Serializable]
|
|
public class Properties
|
|
{
|
|
public string TempoLayerCol;
|
|
public string MusicLayerCol;
|
|
|
|
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;
|
|
}
|
|
}
|
|
} |