You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
373 B
C++

#pragma once
#include <QtWidgets/QMainWindow>
#include "ui_PreClick.h"
#include <QTimer>
#include <Windows.h>
class PreClick : public QMainWindow
{
Q_OBJECT;
public:
PreClick(QWidget* parent = nullptr);
~PreClick();
public slots:
void UpdateCursorPosition();
void StartCursorTrack();
private:
QTimer CursorUpdate;
Ui::PreClickWindow ui;
};