mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
* IoC Field Injection base changes. Usages not converted yet. * Fix issues with the csproj file. * Work on converting the client. * We're done here. All implemented and good.
19 lines
626 B
C#
19 lines
626 B
C#
using SS14.Shared;
|
|
using SS14.Shared.GameObjects;
|
|
using SS14.Shared.IoC;
|
|
|
|
namespace SS14.Client.Interfaces.MessageLogging
|
|
{
|
|
public interface IMessageLogger
|
|
{
|
|
void Initialize();
|
|
void LogOutgoingComponentNetMessage(int uid, ComponentFamily family, object[] parameters);
|
|
|
|
void LogIncomingComponentNetMessage(int uid, EntityMessage entityMessage, ComponentFamily componentFamily,
|
|
object[] parameters);
|
|
|
|
void LogComponentMessage(int uid, ComponentFamily senderfamily, string sendertype, ComponentMessageType type);
|
|
void Ping();
|
|
}
|
|
}
|