1
0
mirror of synced 2024-11-27 21:10:48 +01:00
TaikoSoundEditor/Collections/MusicInfos.cs

14 lines
259 B
C#
Raw Normal View History

2023-09-18 17:53:43 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-10-01 18:40:41 +02:00
using TaikoSoundEditor.Data;
2023-09-18 17:53:43 +02:00
2023-10-01 18:40:41 +02:00
namespace TaikoSoundEditor.Collections
2023-09-18 17:53:43 +02:00
{
2023-10-01 18:40:41 +02:00
internal class MusicInfos : Collection<IMusicInfo>
2023-09-18 17:53:43 +02:00
{
}
}