1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/client/widgets/CArtifactsOfHeroMain.h

40 lines
975 B
C++
Raw Normal View History

2023-04-23 14:10:35 +02:00
/*
* CArtifactsOfHeroMain.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
#include "CArtifactsOfHeroBase.h"
2024-03-30 17:18:50 +02:00
#include "../gui/Shortcut.h"
2023-04-23 14:10:35 +02:00
class CArtifactsOfHeroMain : public CArtifactsOfHeroBase, public CKeyShortcut
2023-04-23 14:10:35 +02:00
{
public:
2024-04-19 16:14:41 +02:00
CArtifactsOfHeroMain(const Point & position);
2024-04-16 16:45:31 +02:00
~CArtifactsOfHeroMain() override;
2024-04-19 16:14:41 +02:00
void enableArtifactsCostumeSwitcher();
void keyPressed(EShortcut key) override;
void keyReleased(EShortcut key) override;
2024-03-30 17:18:50 +02:00
private:
2024-04-19 16:14:41 +02:00
const std::vector<EShortcut> costumesSwitcherHotkeys =
2024-03-30 17:18:50 +02:00
{
EShortcut::HERO_COSTUME_0,
EShortcut::HERO_COSTUME_1,
EShortcut::HERO_COSTUME_2,
EShortcut::HERO_COSTUME_3,
EShortcut::HERO_COSTUME_4,
EShortcut::HERO_COSTUME_5,
EShortcut::HERO_COSTUME_6,
EShortcut::HERO_COSTUME_7,
EShortcut::HERO_COSTUME_8,
EShortcut::HERO_COSTUME_9
};
2023-04-23 14:10:35 +02:00
};