mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
23 lines
407 B
C++
23 lines
407 B
C++
#ifndef DRAWERTH_ME2SCANNER_H
|
|
#define DRAWERTH_ME2SCANNER_H
|
|
|
|
#pragma once
|
|
#include "STh.h"
|
|
|
|
class DrawerTh_ME2Scanner : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static void doEmitionAddPolyLine();
|
|
static void doEmitDrawTextPlacers();
|
|
|
|
public: signals: void sAddPolyLine();
|
|
public: signals: void sDrawTextPlacers();
|
|
|
|
protected:
|
|
void run();
|
|
};
|
|
extern DrawerTh_ME2Scanner *dtME2;
|
|
#endif // DRAWERTH_ME2SCANNER_H
|