Files
godot-host-test/Interfaces/ITargetSpawner.cs
T
2026-07-11 10:54:02 +02:00

14 lines
304 B
C#

using R3;
namespace GodotHostTest.Interfaces;
/// <summary>
/// An object that spawns targets.
/// </summary>
public interface ITargetSpawner
{
/// <summary>
/// Observable that produces a value whenever a target gets spawned.
/// </summary>
Observable<ITarget> TargetSpawned { get; }
}