Files
OldThink/Content.Shared/_White/WeaponModules/BaseModuleComponent.cs
CaypenNow fa348657f9 Обновление модулей (#365)
* base aim module

* sprites, prototypes

* more prototypes

* fix

* fix

* fix2
2024-06-21 13:24:13 +03:00

14 lines
373 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared._White.WeaponModules;
[RegisterComponent, NetworkedComponent]
public partial class BaseModuleComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("value")]
public string AppearanceValue;
[ViewVariables(VVAccess.ReadWrite), DataField("module_type")]
public string ModuleType;
}