GodotComponentTest/entities/IInteractionInterface.cs

7 lines
142 B
C#
Raw Normal View History

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