2022-06-17 19:36:19 -07:00
|
|
|
|
namespace Content.Server.Speech.Components;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Nyehh, my gabagool, see?
|
|
|
|
|
|
/// Etc etc.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class MobsterAccentComponent : Component
|
2022-06-17 19:36:19 -07:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Do you make all the rules?
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("isBoss")]
|
|
|
|
|
|
public bool IsBoss = true;
|
|
|
|
|
|
}
|