This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RDTKEditor/RhythmBaseCore/Converters/SecondConverter.cs
T

10 lines
152 B
C#

namespace RhythmBase.Converters
{
internal class SecondConverter : TimeConverter
{
public SecondConverter() : base(TimeType.Second)
{
}
}
}