mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 04:27:42 +00:00
New code style refactor
This commit is contained in:
@@ -4,28 +4,25 @@
|
||||
#include "CToken.hpp"
|
||||
#include "Audio/CMidiManager.hpp"
|
||||
|
||||
namespace urde
|
||||
{
|
||||
namespace urde {
|
||||
|
||||
class CScriptMidi : public CEntity
|
||||
{
|
||||
TToken<CMidiManager::CMidiData> x34_song;
|
||||
CMidiHandle x3c_handle;
|
||||
float x40_fadeInTime;
|
||||
float x44_fadeOutTime;
|
||||
u16 x48_volume;
|
||||
class CScriptMidi : public CEntity {
|
||||
TToken<CMidiManager::CMidiData> x34_song;
|
||||
CMidiHandle x3c_handle;
|
||||
float x40_fadeInTime;
|
||||
float x44_fadeOutTime;
|
||||
u16 x48_volume;
|
||||
|
||||
void StopInternal(float fadeTime);
|
||||
void StopInternal(float fadeTime);
|
||||
|
||||
public:
|
||||
CScriptMidi(TUniqueId id, const CEntityInfo& info, std::string_view name,
|
||||
bool active, CAssetId csng, float, float, s32);
|
||||
CScriptMidi(TUniqueId id, const CEntityInfo& info, std::string_view name, bool active, CAssetId csng, float, float,
|
||||
s32);
|
||||
|
||||
void Stop(CStateManager& mgr, float fadeTime);
|
||||
void Play(CStateManager& mgr, float fadeTime);
|
||||
void Accept(IVisitor& visitor);
|
||||
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr);
|
||||
void Stop(CStateManager& mgr, float fadeTime);
|
||||
void Play(CStateManager& mgr, float fadeTime);
|
||||
void Accept(IVisitor& visitor);
|
||||
void AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId objId, CStateManager& stateMgr);
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
} // namespace urde
|
||||
|
||||
Reference in New Issue
Block a user