9 lines
162 B
C#
9 lines
162 B
C#
namespace Wino.Core.Domain.Interfaces
|
|
{
|
|
public interface IKeyPressService
|
|
{
|
|
bool IsCtrlKeyPressed();
|
|
bool IsShiftKeyPressed();
|
|
}
|
|
}
|