fish-station/Content.Shared/_Starlight/OnCollide/SpawnOnCollideComponent.cs
Vigers Ray b52f640b5a
Порт стрельбы со старлайна (#2640)
Co-authored-by: KaiserMaus <kaiser.ratte@gmail.com>
2025-08-08 22:25:02 +03:00

19 lines
481 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Robust.Shared.Prototypes;
namespace Content.Shared._Starlight.OnCollide;
[RegisterComponent]
public sealed partial class SpawnOnCollideComponent : Component
{
/// <summary>
/// Entity prototype to spawn.
/// </summary>
[DataField(required: true)]
public EntProtoId Prototype = string.Empty;
[DataField]
public bool Collided;
}