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

37 lines
562 B
C++
Raw Normal View History

2023-09-07 20:19:31 +02:00
/*
* timedevent.cpp, 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
*
*/
#include "StdInc.h"
2023-09-05 01:26:38 +02:00
#include "timedevent.h"
#include "ui_timedevent.h"
TimedEvent::TimedEvent(QWidget *parent) :
QDialog(parent),
ui(new Ui::TimedEvent)
{
ui->setupUi(this);
}
TimedEvent::~TimedEvent()
{
delete ui;
}
void TimedEvent::on_eventResources_clicked()
{
}
void TimedEvent::on_TimedEvent_finished(int result)
{
}