4caa4655e2
changed Event to GameEvent finally fixed the stats NaN check ip for bans consolidated console, profile, and logout into dropdown make sure game is iw4 before using :^ in say fix pm not showing from name if in web console show time left of temban on profile
12 lines
248 B
C#
12 lines
248 B
C#
using SharedLibraryCore.Dtos;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
public interface IEventApi
|
|
{
|
|
void OnServerEvent(object sender, GameEvent E);
|
|
Queue<EventInfo> GetEvents();
|
|
}
|
|
}
|