Files
OldThink/Content.Server/UtkaIntegration/Commands/IUtkaCommand.cs
rhailrake aca6843c0a [feat] Sockets, i guess mm hmm
# 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
2024-01-10 22:21:52 +07:00

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);
}