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

28 lines
371 B
C
Raw Normal View History

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:
explicit TimedEvent(QWidget *parent = nullptr);
~TimedEvent();
private slots:
void on_eventResources_clicked();
void on_TimedEvent_finished(int result);
private:
Ui::TimedEvent *ui;
};
#endif // TIMEDEVENT_H