Scope DTRBar

This commit is contained in:
MidoriKami 2023-09-05 14:35:08 -07:00
parent 166669597d
commit 692113958b
2 changed files with 62 additions and 3 deletions

View file

@ -19,4 +19,10 @@ public interface IDtrBar
/// <returns>The entry object used to update, hide and remove the entry.</returns>
/// <exception cref="ArgumentException">Thrown when an entry with the specified title exists.</exception>
public DtrBarEntry Get(string title, SeString? text = null);
/// <summary>
/// Removes a DTR bar entry from the system.
/// </summary>
/// <param name="title">Title of the entry to remove.</param>
public void Remove(string title);
}