mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-08-10 20:59:05 +00:00
23 lines
243 B
C++
23 lines
243 B
C++
#ifndef __RETRO_CAUDIOSYS_HPP__
|
|
#define __RETRO_CAUDIOSYS_HPP__
|
|
|
|
#include "../GCNTypes.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
namespace Common
|
|
{
|
|
|
|
class CAudioSys
|
|
{
|
|
public:
|
|
CAudioSys(u8,u8,u8,u8,u32)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif // __RETRO_CAUDIOSYS_HPP__
|