mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 16:31:21 +00:00
14 lines
247 B
C#
14 lines
247 B
C#
|
namespace FSO.Common.Content
|
|||
|
{
|
|||
|
public interface IContentReference <T> : IContentReference
|
|||
|
{
|
|||
|
T Get();
|
|||
|
}
|
|||
|
|
|||
|
public interface IContentReference
|
|||
|
{
|
|||
|
object GetGeneric();
|
|||
|
object GetThrowawayGeneric();
|
|||
|
}
|
|||
|
}
|