mirror of
https://github.com/0015/ThatProject.git
synced 2026-01-13 01:37:43 +03:00
13 lines
210 B
C++
13 lines
210 B
C++
#pragma once
|
|
|
|
class BleKeyboard;
|
|
class MyShortcut {
|
|
private:
|
|
BleKeyboard *bleKeyboard;
|
|
int shortcutId;
|
|
|
|
public:
|
|
MyShortcut(BleKeyboard *bleKeyboard, int caseId);
|
|
void Action();
|
|
void RelaseAllkey();
|
|
}; |