src/Weapons.hh
author terom
Mon, 08 Dec 2008 21:18:08 +0000
changeset 311 440763821484
parent 283 7540b0859579
permissions -rw-r--r--
make Input have its own timer, and add key-repeat handling, and fix some warnings
#ifndef WEAPONS_HH
#define WEAPONS_HH

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

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

#endif