mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
30 lines
416 B
C++
Executable File
30 lines
416 B
C++
Executable File
#ifndef DARKMAP_H
|
|
#define DARKMAP_H
|
|
|
|
#pragma once
|
|
#include "nesca_3.h"
|
|
#include "resource.h"
|
|
|
|
class DarkMap : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static int cou;
|
|
static int qwmGrWidth;
|
|
static int qwmGrHeight;
|
|
static void doEmitionDrawText();
|
|
|
|
public: signals: void sDrawText();
|
|
|
|
public:
|
|
void doEmitDrawText();
|
|
|
|
protected:
|
|
void run();
|
|
};
|
|
|
|
extern DarkMap *dmTh;
|
|
|
|
#endif // DARKMAP_H
|