1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00
vcmi/mapeditor/mapsettings/timedevent.h

38 lines
643 B
C
Raw Normal View History

2023-09-07 20:19:31 +02:00
/*
* timedevent.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
2023-09-05 01:26:38 +02:00
#ifndef TIMEDEVENT_H
#define TIMEDEVENT_H
#include <QDialog>
namespace Ui {
class TimedEvent;
}
class TimedEvent : public QDialog
{
Q_OBJECT
public:
2023-09-08 01:43:01 +02:00
explicit TimedEvent(QListWidgetItem *, QWidget *parent = nullptr);
2023-09-05 01:26:38 +02:00
~TimedEvent();
private slots:
void on_eventResources_clicked();
void on_TimedEvent_finished(int result);
private:
Ui::TimedEvent *ui;
2023-09-08 01:43:01 +02:00
QListWidgetItem * target;
2023-09-05 01:26:38 +02:00
};
#endif // TIMEDEVENT_H