1
0
mirror of synced 2025-02-17 11:18:33 +01:00
TaikoSoundEditor/Collections/MusicOrders.cs

10 lines
232 B
C#
Raw Normal View History

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