13 lines
322 B
C#
13 lines
322 B
C#
namespace GodotHostTest.Interfaces;
|
|
|
|
/// <summary>
|
|
/// An object which receives targets as soon as they are created.
|
|
/// </summary>
|
|
public interface ITargetCollector
|
|
{
|
|
/// <summary>
|
|
/// Register a target.
|
|
/// </summary>
|
|
/// <param name="target">The new target.</param>
|
|
void NewTarget(ITarget target);
|
|
} |