1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:42:55 +08:00
osu-lazer/osu.Game/IO/IHasFiles.cs

10 lines
163 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace osu.Game.IO
{
public interface IHasFiles<TFile>
{
List<TFile> Files { get; set; }
}
}