add join team and map change events to CSGO parser

This commit is contained in:
RaidMax
2022-03-28 18:05:18 -05:00
parent 770785e979
commit eafd7cb530
5 changed files with 48 additions and 9 deletions

View File

@ -1,4 +1,6 @@
using System.Globalization;
using System.Collections.Generic;
using System.Globalization;
using SharedLibraryCore.Database.Models;
namespace SharedLibraryCore.Interfaces
{
@ -63,5 +65,10 @@ namespace SharedLibraryCore.Interfaces
/// indicates the format expected for parsed guids
/// </summary>
NumberStyles GuidNumberStyle { get; set; }
/// <summary>
/// maps the team code name to a type type eg "CT" -> Allies
/// </summary>
Dictionary<string, EFClient.TeamType> TeamMapping { get; }
}
}