Files
pico-launcher/arm7/source/ipcServices/SoundIpcService.h
2025-11-25 17:41:31 +01:00

13 lines
236 B
C++

#pragma once
#include "ipc/IpcService.h"
#include "ipcChannels.h"
class SoundIpcService : public IpcService
{
public:
SoundIpcService()
: IpcService(IPC_CHANNEL_SOUND) { }
void OnMessageReceived(u32 data) override;
};