1
0
mirror of synced 2025-02-17 11:18:33 +01:00

14 lines
259 B
C#
Raw Normal View History

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