mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-23 08:37:48 +03:00
* add: crossbar * add: crossbar * add: crossbow * clean up * AI rewie * fix * fix * fix :( * Update tags.yml * fix
15 lines
423 B
C#
15 lines
423 B
C#
namespace Content.Client._White.Guns.Stretched;
|
|
|
|
[RegisterComponent, Access(typeof(StretchedVisualizerSystem))]
|
|
public sealed partial class StretchedVisualsComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public string LoadedState = string.Empty;
|
|
|
|
[DataField(required: true)]
|
|
public string StretchedState = string.Empty;
|
|
|
|
[DataField(required: true)]
|
|
public string UnstrungState = string.Empty;
|
|
}
|