mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
30 lines
754 B
C++
30 lines
754 B
C++
/*
|
|
* CExchangeController.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 "../lib/mapObjects/CGHeroInstance.h"
|
|
|
|
class CCallback;
|
|
|
|
class CExchangeController
|
|
{
|
|
public:
|
|
CExchangeController(ObjectInstanceID hero1, ObjectInstanceID hero2);
|
|
void swapArmy();
|
|
void moveArmy(bool leftToRight, std::optional<SlotID> heldSlot);
|
|
void moveStack(bool leftToRight, SlotID sourceSlot);
|
|
void swapArtifacts(bool equipped, bool baclpack);
|
|
void moveArtifacts(bool leftToRight, bool equipped, bool baclpack);
|
|
|
|
private:
|
|
const CGHeroInstance * left;
|
|
const CGHeroInstance * right;
|
|
};
|