blob: dd43d9742af46ae34f0a9c16af0630a868b7dbc6 (
plain)
1
2
3
4
5
6
7
8
9
|
// This file is part of the 64k demo project.
// It defines the public interface for the audio system.
// Includes initialization, shutdown, and frame updates.
#pragma once
void audio_init();
void audio_update();
void audio_shutdown();
|