This repository has been archived on 2025-10-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

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