.
This commit is contained in:
@@ -8,12 +8,13 @@ namespace GodotHostTest.Interfaces;
|
||||
public interface ITarget
|
||||
{
|
||||
/// <summary>
|
||||
/// The target hasn't been hit in the allotted time and has timed out.
|
||||
/// The target hasn't been hit in the allotted time and has timed out; once this observable emits an event, both
|
||||
/// it and <see cref="Hit"/> complete.
|
||||
/// </summary>
|
||||
Observable<Unit> TimedOut { get; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// The target has been hit.
|
||||
/// The target has been hit; once this observable emits an event, both it and <see cref="TimedOut"/> complete.
|
||||
/// </summary>
|
||||
Observable<Unit> Hit { get; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user