Archived
forked from RDTKEditor/RDTKEditor
15 lines
308 B
C#
15 lines
308 B
C#
using RhythmBase.Components;
|
|
namespace RhythmBase.Events
|
|
{
|
|
/// <summary>
|
|
/// Represents an event that occurs in a room.
|
|
/// </summary>
|
|
public interface IRoomEvent : IBaseEvent
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the room associated with the event.
|
|
/// </summary>
|
|
RDRoom Rooms { get; set; }
|
|
}
|
|
}
|