GodotComponentTest/entities/IInteractionInterface.cs

10 lines
241 B
C#
Raw Normal View History

using GodotComponentTest.components;
namespace GodotComponentTest.entities;
2023-11-18 22:32:57 +01:00
public interface IInteractionInterface {
void OnInteractionStart();
void OnInteractionEnd();
2023-11-18 22:32:57 +01:00
InteractionComponent InteractionComponent { get; set; }
}