mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
14 lines
433 B
C#
14 lines
433 B
C#
using Content.Shared.Chasm;
|
|
using Content.Shared.Speech.Components;
|
|
using Content.Shared.Speech.Muting;
|
|
using System;
|
|
|
|
namespace Content.Shared.Speech.EntitySystems;
|
|
|
|
/// <summary>
|
|
/// Once the chat refactor has happened, move the code from
|
|
/// <see cref="Content.Server.Speech.EntitySystems.SpeakOnUseSystem"/>
|
|
/// to here and set this class to sealed.
|
|
/// </summary>
|
|
public abstract class SharedSpeakOnActionSystem : EntitySystem;
|