mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
27 lines
521 B
C
27 lines
521 B
C
|
#ifndef DRAWERTH_HORNET_H
|
||
|
#define DRAWERTH_HORNET_H
|
||
|
|
||
|
#pragma once
|
||
|
#include "nesca_3.h"
|
||
|
#include "resource.h"
|
||
|
|
||
|
class DrawerTh_HorNet : public QThread
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
static void doEmitionDrawGrid();
|
||
|
static void doEmitionAddLine(int x1, int y1, int x2, int y2);
|
||
|
static void doEmitionAddDelimLines();
|
||
|
|
||
|
public: signals: void sAddDelimLines();
|
||
|
public: signals: void sAddLine(int, int, int, int);
|
||
|
public: signals: void sDrawGrid();
|
||
|
|
||
|
protected:
|
||
|
void run();
|
||
|
};
|
||
|
|
||
|
extern DrawerTh_HorNet *dtHN;
|
||
|
#endif // DRAWERTH_HORNET_H
|