добавил программу для воздуха, все вроде работает

This commit is contained in:
2025-11-14 13:31:55 +03:00
parent af351135a2
commit 8b7c7b71bc
4 changed files with 69 additions and 67 deletions

View File

@@ -13,7 +13,7 @@
class JoystickReader {
public:
JoystickReader(int frequency = 50);
JoystickReader();
~JoystickReader();
bool initialize();
@@ -22,7 +22,6 @@ public:
private:
SDL_Joystick* joystick;
int updateIntervalMs;
std::string joystickName;
};