可以显示5x5的格子,且每个格子里面的数字都是随机且不重复的
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#ifndef WORKTHREAD_H
|
||||
#define WORKTHREAD_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QThread>
|
||||
|
||||
class WorkThread : public QThread
|
||||
{
|
||||
|
||||
protected:
|
||||
void run();
|
||||
|
||||
};
|
||||
|
||||
//****************************************************c
|
||||
|
||||
struct care
|
||||
{
|
||||
int num;
|
||||
long color;
|
||||
|
||||
};
|
||||
|
||||
#endif // WORKTHREAD_H
|
||||
Reference in New Issue
Block a user