2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-16 14:31:22 +00:00
metaforce/Runtime/Audio/CAudioStateWin.hpp
2015-08-30 17:44:42 -10:00

22 lines
402 B
C++

#ifndef __RETRO_CAUDIOSTATEWIN_HPP__
#define __RETRO_CAUDIOSTATEWIN_HPP__
#include "../CIOWin.hpp"
namespace Retro
{
class CAudioStateWin : public CIOWin
{
public:
CAudioStateWin() : CIOWin("CAudioStateWin") {}
CIOWin::EMessageReturn OnMessage(const CArchitectureMessage& msg, CArchitectureQueue& queue)
{
return MsgRetNormal;
}
};
}
#endif // __RETRO_CAUDIOSTATEWIN_HPP__