1
0
mirror of synced 2024-11-30 22:17:17 +01:00
TaikoSoundEditor/Collections/MusicOrders.cs

10 lines
232 B
C#
Raw Normal View History

2023-10-01 18:40:41 +02:00
using TaikoSoundEditor.Data;
namespace TaikoSoundEditor.Collections
{
internal class MusicOrders : Collection<IMusicOrder>
{
public IMusicOrder GetByUniqueId(int id) => Items.Find(i => i.UniqueId == id);
}
}