10 lines
173 B
C#
10 lines
173 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface IUserInteraction
|
|
{
|
|
event EventHandler<UserInteractedEventArgs>? UserInteracted;
|
|
|
|
void Stop();
|
|
|
|
void Start();
|
|
} |