diff options
author | salaaad2 <arthurdurant263@gmail.com> | 2022-01-04 16:05:26 +0100 |
---|---|---|
committer | salaaad2 <arthurdurant263@gmail.com> | 2022-01-04 16:05:26 +0100 |
commit | e31239dda9677731c64952360508476e9891ead9 (patch) | |
tree | 2343074fbea8e5cf9b959d276f89edfa6009d0f6 /src/weapon.hpp | |
parent | release v0.0.1 (diff) | |
download | threshold-e31239dda9677731c64952360508476e9891ead9.tar.gz threshold-e31239dda9677731c64952360508476e9891ead9.tar.bz2 threshold-e31239dda9677731c64952360508476e9891ead9.tar.xz threshold-e31239dda9677731c64952360508476e9891ead9.tar.zst threshold-e31239dda9677731c64952360508476e9891ead9.zip |
add headers
Diffstat (limited to 'src/weapon.hpp')
-rw-r--r-- | src/weapon.hpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/weapon.hpp b/src/weapon.hpp new file mode 100644 index 0000000..72d719f --- /dev/null +++ b/src/weapon.hpp @@ -0,0 +1,18 @@ +/*********************************/ +/* THRESHOLD ( // */ +/* weaponh ( )/ */ +/* by salade )(/ */ +/* ________________ ( /) */ +/* ()__)____________))))) :^} */ +/*********************************/ + +#ifndef WEAPON_H_ +#define WEAPON_H_ + +class Weapon { + public: + Weapon(); + ~Weapon(); +}; + +#endif // WEAPON_H_ |