Files
frelay/Console/Console.h

16 lines
236 B
C
Raw Normal View History

2025-06-17 12:00:46 +08:00
#ifndef FRELAY_CONSOLE_H
#define FRELAY_CONSOLE_H
2025-06-20 17:21:58 +08:00
#include <ClientCore.h>
class RelayConsole : public QObject
2025-06-17 12:00:46 +08:00
{
2025-06-20 17:21:58 +08:00
Q_OBJECT
2025-06-17 12:00:46 +08:00
2025-06-20 17:21:58 +08:00
public:
RelayConsole(QObject* parent = nullptr);
~RelayConsole() override;
2025-06-17 12:00:46 +08:00
};
#endif // FRELAY_CONSOLE_H