Files
AwperativeKernel/Awperative/Kernel/Events/Behaviors/BehaviorDestroyEvent.cs
2026-01-19 13:56:50 -05:00

15 lines
323 B
C#

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