GodotComponentTest/entities/IInteractionInterface.cs

15 lines
265 B
C#
Raw Normal View History

using GodotComponentTest.components;
namespace GodotComponentTest.entities;
public interface IInteractionInterface
{
void OnInteractionStart();
void OnInteractionEnd();
InteractionComponent InteractionComponent
{
get;
set;
}
}