aboutsummaryrefslogtreecommitdiffstats
path: root/src/wp_nadelauncher.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wp_nadelauncher.hpp')
-rw-r--r--src/wp_nadelauncher.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/wp_nadelauncher.hpp b/src/wp_nadelauncher.hpp
new file mode 100644
index 0000000..2619936
--- /dev/null
+++ b/src/wp_nadelauncher.hpp
@@ -0,0 +1,23 @@
+/*********************************/
+/* THRESHOLD ( // */
+/* rifle ( )/ */
+/* by salade )(/ */
+/* ________________ ( /) */
+/* ()__)____________))))) :^} */
+/*********************************/
+
+#ifndef WP_NADELAUNCHER_H_
+#define WP_NADELAUNCHER_H_
+
+#include "weapon.hpp"
+
+class wp_nadelauncher : public AWeapon {
+ public:
+ wp_nadelauncher(const char* s, const char* r);
+ ~wp_nadelauncher();
+
+ int bang(std::vector<Entity>* enemies, Entity* player);
+ Projectile const& getProjectile() const;
+};
+
+#endif