Fix griddrag and tethergun (#10510)

This commit is contained in:
metalgearsloth
2022-09-01 13:11:45 +10:00
committed by GitHub
parent a44c5a447e
commit a0f2e7ac92
9 changed files with 126 additions and 18 deletions

View File

@@ -5,7 +5,16 @@ namespace Content.Shared.Weapons.Ranged.Systems;
public abstract class SharedTetherGunSystem : EntitySystem
{
protected const string CommandName = "tethergun";
public const string CommandName = "tethergun";
}
/// <summary>
/// Sent from server to client if tether gun is toggled on.
/// </summary>
[Serializable, NetSerializable]
public sealed class TetherGunToggleMessage : EntityEventArgs
{
public bool Enabled;
}
[Serializable, NetSerializable]