mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-20 15:08:46 +03:00
* little glimmer guy * oops I forgot to add a mob description HA HA HA * attempting to fix code issues * more code fixes * more code fixes * cod efix * coed fics * every day i scream at least twice * fixed attribution * Update attributions.yml tehe * made the sound effect public domain * dies * bug fix (HA HA) * wow fuck someone already added ectoplasm wow i thought i added it first wow wow
12 lines
331 B
C#
12 lines
331 B
C#
using Content.Server.StationEvents.Events;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
[RegisterComponent, Access(typeof(GlimmerMobRule))]
|
|
public sealed partial class GlimmerMobRuleComponent : Component
|
|
{
|
|
[DataField(required: true)]
|
|
public EntProtoId MobPrototype = string.Empty;
|
|
}
|