7 lines
142 B
C#
7 lines
142 B
C#
|
namespace GodotComponentTest.entities;
|
||
|
|
||
|
public interface IInteractionInterface
|
||
|
{
|
||
|
void OnInteractionStart();
|
||
|
void OnInteractionEnd();
|
||
|
}
|