2023-01-30 21:18:59 +02:00
|
|
|
/*
|
|
|
|
* VcmiSettingsWindow.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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2023-02-12 18:29:23 +02:00
|
|
|
#include "../../gui/InterfaceObjectConfigurable.h"
|
2023-01-30 21:18:59 +02:00
|
|
|
|
2023-02-18 18:58:22 +02:00
|
|
|
class OtherOptionsTab : public InterfaceObjectConfigurable
|
2023-01-30 21:18:59 +02:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
public:
|
2023-02-18 18:58:22 +02:00
|
|
|
OtherOptionsTab();
|
2023-01-30 21:18:59 +02:00
|
|
|
};
|