GodotComponentTest/entities/IInteractionInterface.cs

7 lines
142 B
C#

namespace GodotComponentTest.entities;
public interface IInteractionInterface
{
void OnInteractionStart();
void OnInteractionEnd();
}