2023-06-26 22:34:48 +02:00
|
|
|
using GodotComponentTest.components;
|
|
|
|
|
2023-06-23 15:39:07 +02:00
|
|
|
namespace GodotComponentTest.entities;
|
|
|
|
|
2023-11-18 22:32:57 +01:00
|
|
|
public interface IInteractionInterface {
|
2023-06-23 15:39:07 +02:00
|
|
|
void OnInteractionStart();
|
|
|
|
void OnInteractionEnd();
|
2023-06-26 22:34:48 +02:00
|
|
|
|
2023-11-18 22:32:57 +01:00
|
|
|
InteractionComponent InteractionComponent { get; set; }
|
2023-06-23 15:39:07 +02:00
|
|
|
}
|