Files
SPT-Server-Build/Libraries/SPTarkov.Server.Core/Context/ContextVariable.cs
T
2025-03-07 13:16:43 +00:00

22 lines
443 B
C#

namespace SPTarkov.Server.Core.Context;
public class ContextVariable(object value, ContextVariableType contextVariableInternalType)
{
private readonly DateTime _timestamp = DateTime.UtcNow;
public T GetValue<T>()
{
return (T) value;
}
public DateTime GetTimestamp()
{
return _timestamp;
}
public ContextVariableType GetContextType()
{
return contextVariableInternalType;
}
}