mysimulation/server/tso.common/Content/IContentProvider.cs

14 lines
289 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
namespace FSO.Common.Content
{
public interface IContentProvider <T>
{
T Get(ulong id);
T Get(string name);
T Get(uint type, uint fileID);
T Get(ContentID id);
List<IContentReference<T>> List();
}
}