1
#ifndef WEAPONS_HH
2
#define WEAPONS_HH
3
4
#include "Weapon.hh"
5
#include <vector>
6
7
/**
8
* A collection of simple weapons
9
*/
10
std::vector<Weapon*> buildWeaponsList (void);
11
12
#endif