mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 19:42:55 +08:00
10 lines
163 B
C#
10 lines
163 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace osu.Game.IO
|
|||
|
{
|
|||
|
public interface IHasFiles<TFile>
|
|||
|
{
|
|||
|
List<TFile> Files { get; set; }
|
|||
|
}
|
|||
|
}
|