Archived
forked from RDTKEditor/RDTKEditor
15 lines
330 B
C#
15 lines
330 B
C#
using RhythmBase.Components;
|
|
namespace RhythmBase.Events
|
|
{
|
|
/// <summary>
|
|
/// Represents an event that occurs within a single room.
|
|
/// </summary>
|
|
public interface ISingleRoomEvent : IBaseEvent
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the room associated with the event.
|
|
/// </summary>
|
|
RDSingleRoom Room { get; set; }
|
|
}
|
|
}
|