Files
SPT-Server-Build/Core/Context/IApplicationContext.cs
T
2025-01-05 02:12:38 +00:00

9 lines
309 B
C#

namespace Types.Context;
public interface IApplicationContext
{
ContextVariable? GetLatestValue(ContextVariableType type);
ICollection<ContextVariable> GetValues(ContextVariableType type);
void AddValue(ContextVariableType type, object value);
void ClearValues(ContextVariableType type);
}