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