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