This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/BigBaseV2/src/core/data/custom_weapons.hpp

12 lines
249 B
C++

#pragma once
#include "core/enums.hpp"
struct custom_weapon {
big::CustomWeapon id;
const char name[16];
};
const custom_weapon custom_weapons[] = {
{ big::CustomWeapon::NONE, "No weapon" },
{ big::CustomWeapon::GRAVITY_GUN, "Gravity Gun" }
};