1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

Add GameLogEvent as catch all for unhandled log lines

This commit is contained in:
RaidMax
2024-06-22 12:18:33 -05:00
parent 4b6f3e8851
commit dffcae8344
3 changed files with 16 additions and 2 deletions

View File

@ -0,0 +1,6 @@
namespace SharedLibraryCore.Events.Game;
public class GameLogEvent : GameEventV2
{
public string LogLine { get; set; }
}