Files
Toolkit2/Toolkit.Foundation/IUserInteraction.cs
T
2024-07-18 21:45:15 +01:00

10 lines
173 B
C#

namespace Toolkit.Foundation;
public interface IUserInteraction
{
event EventHandler<UserInteractedEventArgs>? UserInteracted;
void Stop();
void Start();
}