15 lines
384 B
C#
15 lines
384 B
C#
using System;
|
|
|
|
|
|
namespace Awperative;
|
|
|
|
|
|
public sealed partial class Scene : DockerEntity
|
|
{
|
|
public event EventHandler<BehaviorCreateEvent> BehaviorCreatedEvent;
|
|
public event EventHandler<BehaviorDestroyEvent> BehaviorDestroyedEvent;
|
|
|
|
|
|
public event EventHandler<BodyCreateEvent> BodyCreatedEvent;
|
|
public event EventHandler<BodyDestroyEvent> BodyDestroyedEvent;
|
|
} |