iw4x-client/src/Components/Modules/Weapon.hpp
/dev/root 6c9e28ff42 [LineEndings] Fix crlf lineendings
- added gitattributes file to force crlf for hpp/cpp/lua
2017-01-16 17:42:50 +01:00

16 lines
288 B
C++

namespace Components
{
class Weapon : public Component
{
public:
Weapon();
#if defined(DEBUG) || defined(FORCE_UNIT_TESTS)
const char* getName() { return "Weapon"; };
#endif
private:
static Game::XAssetHeader WeaponFileLoad(Game::XAssetType type, std::string filename);
};
}