src/Weapons.hh
author terom
Mon, 08 Dec 2008 12:46:37 +0000
changeset 283 7540b0859579
parent 236 0048ba274152
permissions -rw-r--r--
start adding some documentation, most core classes (outside of Network) are now doxygen-enabled
#ifndef WEAPONS_HH
#define WEAPONS_HH

#include "Weapon.hh"
#include <vector>

/**
 * Return a collection of simple weapons
 */
std::vector<Weapon*> buildWeaponsList (void);

#endif