添加对 Core 的直接引用

This commit is contained in:
OLDREDSTONE
2025-03-25 15:49:57 +08:00
parent 24907abedb
commit 06c19bf10a
296 changed files with 24961 additions and 2 deletions
+50
View File
@@ -0,0 +1,50 @@
using RhythmBase.Components;
namespace RhythmBase.Events
{
/// <summary>
/// Represents the base interface for an event in the rhythm base system.
/// </summary>
public interface IBaseEvent
{
/// <summary>
/// Gets or sets a value indicating whether the event is active.
/// </summary>
bool Active { get; set; }
/// <summary>
/// Gets or sets the beat associated with the event.
/// </summary>
RDBeat Beat { get; set; }
/// <summary>
/// Gets or sets the condition associated with the event.
/// </summary>
Condition? Condition { get; set; }
/// <summary>
/// Gets the tab associated with the event.
/// </summary>
Tabs Tab { get; }
/// <summary>
/// Gets or sets the tag associated with the event.
/// </summary>
string Tag { get; set; }
/// <summary>
/// Gets the type of the event.
/// </summary>
EventType Type { get; }
/// <summary>
/// Gets or sets the Y coordinate of the event.
/// </summary>
int Y { get; set; }
/// <summary>
/// Returns a string that represents the current object.
/// </summary>
/// <returns>A string that represents the current object.</returns>
string ToString();
}
}