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