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
17 lines
582 B
C#
17 lines
582 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using SharedLibraryCore.Objects;
|
|
using SharedLibraryCore.RCon;
|
|
|
|
namespace SharedLibraryCore.Interfaces
|
|
{
|
|
public interface IRConParser
|
|
{
|
|
Task<Dvar<T>> GetDvarAsync<T>(Connection connection, string dvarName);
|
|
Task<bool> SetDvarAsync(Connection connection, string dvarName, object dvarValue);
|
|
Task<string[]> ExecuteCommandAsync(Connection connection, string command);
|
|
Task<List<Player>> GetStatusAsync(Connection connection);
|
|
CommandPrefix GetCommandPrefixes();
|
|
}
|
|
}
|