This repository has been archived on 2019-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
dungeon-gunner/source/items/Gadget.h

36 lines
546 B
C++

/*
* Gadget.h
*
* Created on: 06.07.2013
* Author: Felix
*/
#ifndef DG_GADGET_H_
#define DG_GADGET_H_
#include <Thor/Time.hpp>
#include "Item.h"
class Character;
class Gadget : public Item {
public:
Gadget(std::string name);
void use(Character& character);
virtual void onThink(int elapsed) = 0;
std::string getName() const;
protected:
virtual void onUse(Character& character) = 0;
virtual sf::Time getCooldownTime() = 0;
protected:
thor::Timer mCooldownTimer;
private:
std::string mName;
};
#endif /* DG_GADGET_H_ */