# Conflicts: # Content.Server/Administration/Systems/BwoinkSystem.cs # Content.Server/Chat/Managers/ChatManager.cs # Content.Server/Entry/EntryPoint.cs # Content.Server/GameTicking/GameTicker.RoundFlow.cs # Content.Server/IoC/ServerContentIoC.cs # Content.Server/RoundEnd/RoundEndSystem.cs # Content.Server/Shuttles/Systems/EmergencyShuttleSystem.Console.cs # Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs # Content.Shared/CCVar/CCVars.cs
12 lines
281 B
C#
12 lines
281 B
C#
using System.Net;
|
|
using Content.Server.UtkaIntegration.TCP;
|
|
|
|
namespace Content.Server.UtkaIntegration;
|
|
|
|
public interface IUtkaCommand
|
|
{
|
|
string Name { get; }
|
|
Type RequestMessageType { get; }
|
|
public void Execute(UtkaTCPSession session, UtkaBaseMessage baseMessage);
|
|
}
|