Initial commit

This commit is contained in:
2026-01-19 13:56:50 -05:00
commit cc4fee7a34
55 changed files with 1824 additions and 0 deletions

View 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;
}
}