mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
12 lines
370 B
C
12 lines
370 B
C
#pragma once
|
|
|
|
#include "tracker_engine.h"
|
|
#include "tracker_engine_defs.h"
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <storage/storage.h>
|
|
#include <toolbox/stream/file_stream.h>
|
|
|
|
bool load_song(TrackerSong* song, Stream* stream);
|
|
bool load_instrument(Instrument* inst, Stream* stream);
|
|
void load_instrument_inner(Stream* stream, Instrument* inst, uint8_t version); |