2019-03-06 13:11:23 +00:00
|
|
|
/***
|
|
|
|
*
|
|
|
|
* 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,
|
2019-03-06 13:11:23 +00:00
|
|
|
w_glock,
|
|
|
|
w_python,
|
|
|
|
w_mp5,
|
|
|
|
w_shotgun,
|
|
|
|
w_crossbow,
|
2019-03-06 19:05:07 +00:00
|
|
|
w_cannon,
|
2019-03-06 13:11:23 +00:00
|
|
|
w_rpg,
|
|
|
|
w_gauss,
|
|
|
|
w_egon,
|
|
|
|
w_hornetgun,
|
|
|
|
w_handgrenade,
|
|
|
|
w_satchel,
|
|
|
|
w_tripmine,
|
2019-03-06 19:05:07 +00:00
|
|
|
w_snark
|
2019-03-06 13:11:23 +00:00
|
|
|
};
|