Initial commit
This commit is contained in:
15
Awperative/Kernel/Entities/Scenes/Events.cs
Normal file
15
Awperative/Kernel/Entities/Scenes/Events.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
|
||||
namespace Gravity.Kernel;
|
||||
|
||||
|
||||
public sealed partial class Scene
|
||||
{
|
||||
public event EventHandler<BehaviorCreateEvent> BehaviorCreatedEvent;
|
||||
public event EventHandler<BehaviorDestroyEvent> BehaviorDestroyedEvent;
|
||||
|
||||
|
||||
public event EventHandler<BodyCreateEvent> BodyCreatedEvent;
|
||||
public event EventHandler<BodyDestroyEvent> BodyDestroyedEvent;
|
||||
}
|
||||
Reference in New Issue
Block a user