Initial commit
This commit is contained in:
15
Awperative/Kernel/Events/Behaviors/BehaviorCreateEvent.cs
Normal file
15
Awperative/Kernel/Events/Behaviors/BehaviorCreateEvent.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Gravity.Kernel;
|
||||
|
||||
public sealed record BehaviorCreateEvent
|
||||
{
|
||||
public readonly Behavior behavior;
|
||||
public readonly Scene scene;
|
||||
|
||||
internal BehaviorCreateEvent() {}
|
||||
|
||||
internal BehaviorCreateEvent(Behavior __behavior, Scene __scene)
|
||||
{
|
||||
behavior = __behavior;
|
||||
scene = __scene;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user