28 lines
728 B
C#
28 lines
728 B
C#
using Content.Shared.MobState.Components;
|
|
using Content.Shared.MobState.State;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Content.Shared.MobState
|
|
{
|
|
public sealed class MobStateChangedEvent : EntityEventArgs
|
|
{
|
|
public MobStateChangedEvent(
|
|
MobStateComponent component,
|
|
IMobState? oldMobState,
|
|
IMobState currentMobState)
|
|
{
|
|
Component = component;
|
|
OldMobState = oldMobState;
|
|
CurrentMobState = currentMobState;
|
|
}
|
|
|
|
public EntityUid Entity => Component.Owner;
|
|
|
|
public MobStateComponent Component { get; }
|
|
|
|
public IMobState? OldMobState { get; }
|
|
|
|
public IMobState CurrentMobState { get; }
|
|
}
|
|
}
|