Add a PromotionManager.
[tagua/yd.git] / src / core / promotionmanager.h
blobd06bc8a21712b719f5b13a9d210e9088c6f40a83
1 #ifndef CORE__PROMOTION_MANAGER_H
2 #define CORE__PROMOTION_MANAGER_H
4 #include <QtCore/QHash>
6 #include "type.h"
7 #include "component.h"
9 class TAGUA_EXPORT PromotionManager: public Component {
10 private:
11 QHash<const IType*,const IType*> m_promotions;
12 QHash<const IType*,const IType*> m_depromotions;
14 public:
15 void setPromotion(IType* from, IType* to);
16 const IType * getPromotion(const IType*) const;
17 const IType * getDepromotion(const IType*) const;
20 #endif // CORE__PROMOTION_MANAGER_H