10 lines
319 B
C#
10 lines
319 B
C#
using Content.Shared.Silicons.Laws;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Server._DV.Objectives.Events;
|
|
|
|
/// <summary>
|
|
/// This event gets called whenever an AIs laws are actually updated.
|
|
/// </summary>
|
|
public record struct AILawUpdatedEvent(EntityUid Target, ProtoId<SiliconLawsetPrototype> Lawset);
|