[feat]jukebox (#9)

This commit is contained in:
rhailrake
2023-05-04 13:43:03 +06:00
committed by Aviu00
parent 1a729666f4
commit 68ffe42dbb
35 changed files with 1626 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace Content.Client.White;
//Система со смешным названием, чье предназначение заключается лишь в одном - отправке нетворк ивентов.
public sealed class CheZaHuetaSystem : EntitySystem
{
public void SendNetMessage(EntityEventArgs message)
{
RaiseNetworkEvent(message);
}
}