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

43 lines
803 B
C
Raw Normal View History

/*
* Bullet.h
*
* Created on: 12.08.2012
* Author: Felix
*/
#ifndef DG_BULLET_H_
#define DG_BULLET_H_
2012-12-22 14:10:26 +00:00
#include <string>
#include "../particle/Particle.h"
2012-10-12 17:22:53 +00:00
#include "../util/Yaml.h"
class Particle;
2012-10-12 17:22:53 +00:00
class Yaml;
/**
* Bullet particle fired by a weapon, may damage actors.
*/
class Bullet : public Particle {
// Public functions.
public:
2012-12-23 14:50:49 +00:00
Bullet(const sf::Vector2f& position, Sprite& shooter, float direction,
2012-10-12 17:22:53 +00:00
const Yaml& config);
2013-03-03 20:28:12 +00:00
void onCollide(std::shared_ptr<Sprite> other);
// Private variables.
private:
2012-12-22 14:10:26 +00:00
static const std::string KEY_DAMAGE;
static const int DEFAULT_DAMAGE;
2012-12-22 14:10:26 +00:00
static const std::string KEY_SPEED;
static const float DEFAULT_SPEED;
2012-10-12 17:22:53 +00:00
2012-12-23 14:50:49 +00:00
Sprite& mShooter;
2012-10-12 17:22:53 +00:00
const int mDamage;
const float mSpeed;
};
#endif /* DG_BULLET_H_ */