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/sprites/RotatingShield.h
2013-07-10 23:25:53 +02:00

25 lines
435 B
C++

/*
* RotatingShield.h
*
* Created on: 06.07.2013
* Author: Felix
*/
#ifndef DG_ROTATINGSHIELD_H_
#define DG_ROTATINGSHIELD_H_
#include "../abstract/Rectangle.h"
class RotatingShield : public Rectangle {
public:
explicit RotatingShield(const sf::Vector2f& position);
private:
using Sprite::setDelete;
using Sprite::setDirection;
using Sprite::getPosition;
friend class Shield;
};
#endif /* DG_ROTATINGSHIELD_H_ */