2016-08-14 21:11:44 +00:00
|
|
|
#ifndef __URDE_CAUXWEAPON_HPP__
|
|
|
|
#define __URDE_CAUXWEAPON_HPP__
|
|
|
|
|
|
|
|
#include "RetroTypes.hpp"
|
2017-08-25 06:18:09 +00:00
|
|
|
#include "CStateManager.hpp"
|
2016-08-14 21:11:44 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
|
|
|
class CAuxWeapon
|
|
|
|
{
|
|
|
|
public:
|
2017-08-21 05:46:59 +00:00
|
|
|
explicit CAuxWeapon(TUniqueId id);
|
2017-08-25 06:18:09 +00:00
|
|
|
void AcceptScriptMsg(EScriptObjectMessage, TUniqueId, CStateManager&);
|
|
|
|
bool IsComboFxActive(const CStateManager& mgr) const;
|
|
|
|
void Load(int curBeam, CStateManager& mgr);
|
2016-08-14 21:11:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CAUXWEAPON_HPP__
|