2024-03-22 17:16:31 +05:00
|
|
|
|
namespace Content.Shared._White.WeaponModules;
|
2024-03-18 01:25:09 +05:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-03-22 13:06:36 +05:00
|
|
|
|
/// LightModuleComponent
|
2024-03-18 01:25:09 +05:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
[RegisterComponent]
|
2024-03-22 19:36:18 +05:00
|
|
|
|
public sealed partial class LightModuleComponent : BaseModuleComponent
|
2024-03-18 01:25:09 +05:00
|
|
|
|
{
|
2024-03-22 13:06:36 +05:00
|
|
|
|
public bool Enabled;
|
2024-03-25 14:27:01 +05:00
|
|
|
|
|
|
|
|
|
|
public float Radius = 4F;
|
2024-03-18 01:25:09 +05:00
|
|
|
|
}
|