Files
Awperative/Awperative/Kernel/Events/Behaviors/BehaviorDestroyEvent.cs
2026-01-30 20:22:49 -05:00

15 lines
319 B
C#

namespace Awperative;
public sealed record BehaviorDestroyEvent
{
public readonly Behavior behavior;
public readonly Scene scene;
internal BehaviorDestroyEvent() {}
internal BehaviorDestroyEvent(Behavior __behavior, Scene __scene)
{
behavior = __behavior;
scene = __scene;
}
}