nuclide/Source/shared/scihunt/weapons.c

30 lines
407 B
C
Raw Normal View History

/***
*
* Copyright (c) 2016-2019 Marco 'eukara' Hladik. All rights reserved.
*
* See the file LICENSE attached with the sources for usage details.
*
****/
weapon_t w_null = {};
weapon_t g_weapons[] = {
w_null,
w_crowbar,
2019-03-06 19:05:07 +00:00
w_hammer,
w_chainsaw,
w_glock,
w_python,
w_mp5,
w_shotgun,
w_crossbow,
2019-03-06 19:05:07 +00:00
w_cannon,
w_rpg,
w_gauss,
w_egon,
w_hornetgun,
w_handgrenade,
w_satchel,
w_tripmine,
2019-03-06 19:05:07 +00:00
w_snark
};