mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-08 06:08:20 -05:00
18 lines
459 B
C#
18 lines
459 B
C#
using SharedLibraryCore.Interfaces;
|
|
|
|
namespace SharedLibraryCore.Events.Server;
|
|
|
|
public class ServerValueRequestEvent : GameServerEvent
|
|
{
|
|
public ServerValueRequestEvent(string valueName, IGameServer server)
|
|
{
|
|
ValueName = valueName;
|
|
Server = server;
|
|
}
|
|
|
|
public string ValueName { get; init; }
|
|
public int? DelayMs { get; init; }
|
|
public int? TimeoutMs { get; init; }
|
|
public string FallbackValue { get; init; }
|
|
}
|