2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-13 21:11:21 +00:00
metaforce/Runtime/World/CScriptSound.hpp
2016-04-20 11:44:18 -10:00

20 lines
457 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);
};
}
#endif // __URDE_CSCRIPTSOUND_HPP__