IW4M-Admin/SharedLibraryCore/Events/Game/MatchStartEvent.cs

9 lines
237 B
C#
Raw Normal View History

2023-02-11 22:03:35 -05:00
using System.Collections.Generic;
namespace SharedLibraryCore.Events.Game;
public class MatchStartEvent : GameEventV2
{
public IReadOnlyDictionary<string, string> SessionData { get; init; } = new Dictionary<string, string>();
}