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