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
RDTKEditor/RhythmBaseCore/Events/ISingleRoomEvent.cs
T

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