2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-16 10:45:51 +00:00
metaforce/Runtime/World/CScriptSound.hpp
2017-01-14 17:07:01 -10:00

22 lines
494 B
C++

#ifndef __URDE_CSCRIPTSOUND_HPP__
#define __URDE_CSCRIPTSOUND_HPP__
#include "CActor.hpp"
namespace urde
{
class CScriptSound : public CActor
{
public:
CScriptSound(TUniqueId, const std::string& name, const CEntityInfo& info,
const zeus::CTransform& xf, s16 soundId, bool, float, float, float,
u32, u32, u32, u32, u32, bool, bool, bool, bool, bool, bool, bool, bool, u32);
void Accept(IVisitor& visitor);
};
}
#endif // __URDE_CSCRIPTSOUND_HPP__