Files
pico-launcher/arm7/source/ipcServices/SoundIpcService.h

13 lines
236 B
C
Raw Normal View History

2025-11-22 17:21:45 +01:00
#pragma once
#include "ipc/IpcService.h"
#include "ipcChannels.h"
class SoundIpcService : public IpcService
{
public:
SoundIpcService()
: IpcService(IPC_CHANNEL_SOUND) { }
void OnMessageReceived(u32 data) override;
};