tools/hwmap2txt/hwmapconverter/mainwindow.h
author Wuzzy <Wuzzy2@mail.ru>
Sun, 05 May 2019 17:23:59 +0200
changeset 14907 3054b85963ef
parent 11015 7a905f0070ce
permissions -rw-r--r--
Play sndFirstBlood after first damage/kill/poisoning of enemy (instead of ANY damage) This avoids sndFirstBlood being played for self-harm, for which this taunt is a bit odd.

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>

namespace Ui {
class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT

public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();

private slots:
    void on_pbLoad_clicked();

    void on_pbSave_clicked();

private:
    Ui::MainWindow *ui;
};

#endif // MAINWINDOW_H