27 lines
372 B
C
27 lines
372 B
C
|
/***
|
||
|
*
|
||
|
* 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,
|
||
|
w_glock,
|
||
|
w_python,
|
||
|
w_mp5,
|
||
|
w_shotgun,
|
||
|
w_crossbow,
|
||
|
w_rpg,
|
||
|
w_gauss,
|
||
|
w_egon,
|
||
|
w_hornetgun,
|
||
|
w_handgrenade,
|
||
|
w_satchel,
|
||
|
w_tripmine,
|
||
|
w_snark
|
||
|
};
|