mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 16:31:21 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
13 lines
247 B
C#
Executable file
13 lines
247 B
C#
Executable file
namespace FSO.Common.Content
|
|
{
|
|
public interface IContentReference <T> : IContentReference
|
|
{
|
|
T Get();
|
|
}
|
|
|
|
public interface IContentReference
|
|
{
|
|
object GetGeneric();
|
|
object GetThrowawayGeneric();
|
|
}
|
|
}
|