Files
OldThink/Content.Client/_White/CheZaHuetaSystem.cs

11 lines
386 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Content.Client._White;
//Система со смешным названием, чье предназначение заключается лишь в одном - отправке нетворк ивентов.
public sealed class CheZaHuetaSystem : EntitySystem
{
public void SendNetMessage(EntityEventArgs message)
{
RaiseNetworkEvent(message);
}
}