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

14 lines
247 B
C#
Raw Permalink Normal View History

namespace FSO.Common.Content
{
public interface IContentReference <T> : IContentReference
{
T Get();
}
public interface IContentReference
{
object GetGeneric();
object GetThrowawayGeneric();
}
}