12 lines
173 B
C#
12 lines
173 B
C#
namespace SPTarkov.DI;
|
|
|
|
public class SingletonStateHolder<T>
|
|
{
|
|
public T State { get; }
|
|
|
|
public SingletonStateHolder(T state)
|
|
{
|
|
State = state;
|
|
}
|
|
}
|