mirror of
https://github.com/ChronosX88/nesca.git
synced 2024-11-23 18:52:19 +00:00
23 lines
308 B
C
23 lines
308 B
C
|
#ifndef PIESTAT_H
|
||
|
#define PIESTAT_H
|
||
|
|
||
|
#pragma once
|
||
|
#include "nesca_3.h"
|
||
|
#include "resource.h"
|
||
|
|
||
|
class PieStat : public QThread
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
public: signals: void sUpdatePie();
|
||
|
|
||
|
public:
|
||
|
void doEmitUpdatePie();
|
||
|
protected:
|
||
|
void run();
|
||
|
};
|
||
|
extern PieStat *psTh;
|
||
|
|
||
|
#endif // PIESTAT_H
|