Files
crtr/Assets/Cryville/Crtr/Browsing/IChartDetail.cs

11 lines
211 B
C#

using System;
namespace Cryville.Crtr.Browsing {
internal interface IChartDetail : IResourceMeta {
string RulesetId { get; }
string Name { get; }
string SongName { get; }
TimeSpan Length { get; }
}
}