Who knows

This commit is contained in:
Benjamin Morgan 2025-09-26 09:26:47 -06:00
parent eaf5a55d18
commit 32e50969b4
45 changed files with 38346 additions and 38306 deletions

38
Beam.h
View file

@ -1,19 +1,19 @@
//
// Created by Benjamin on 4/23/2021.
//
#ifndef SFML_TEMPLATE_BEAM_H
#define SFML_TEMPLATE_BEAM_H
class Beam : public Shootable {
public:
Beam(const sf::Texture& texture, const sf::IntRect &rect, double scale, int rows, int cols, int xOffset, int yOffset, int frameDelay, double damage, double _range) : Shootable(texture, rect, scale, rows, cols, xOffset, yOffset, frameDelay, damage) {
lifetime = 1;
range = _range;
}
};
#endif //SFML_TEMPLATE_BEAM_H
//
// Created by Benjamin on 4/23/2021.
//
#ifndef SFML_TEMPLATE_BEAM_H
#define SFML_TEMPLATE_BEAM_H
class Beam : public Shootable {
public:
Beam(const sf::Texture& texture, const sf::IntRect &rect, double scale, int rows, int cols, int xOffset, int yOffset, int frameDelay, double damage, double _range) : Shootable(texture, rect, scale, rows, cols, xOffset, yOffset, frameDelay, damage) {
lifetime = 1;
range = _range;
}
};
#endif //SFML_TEMPLATE_BEAM_H