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/effects/Bullet.h
Felix Ableitner 203a34f0a0 Added knife.
2013-07-06 13:22:55 +02:00

35 lines
692 B
C++
Executable file

/*
* Bullet.h
*
* Created on: 12.08.2012
* Author: Felix
*/
#ifndef DG_BULLET_H_
#define DG_BULLET_H_
#include "../abstract/Circle.h"
class Character;
class Yaml;
/**
* Bullet particle fired by a weapon, may damage actors.
*/
class Bullet : public Circle {
public:
explicit Bullet(const sf::Vector2f& position, Character& shooter,
sf::Vector2f direction, const Yaml& config, float speed,
float damage, float maxRange);
void onCollide(std::shared_ptr<Sprite> other);
private:
const Character& mShooter;
const int mDamage;
const float mSpeed;
const float mMaxRangeSquared;
sf::Vector2f mStartPoint;
};
#endif /* DG_BULLET_H_ */