2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
306 B

  1. #ifndef IZ_UTIL_MIDI_H
  2. #define IZ_UTIL_MIDI_H
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include "../../common/IZ_common.h"
  6. typedef u8 IZ_MIDINote;
  7. static const u8 IZ_MIDI_NOTE_ON = 0x90u;
  8. static const u8 IZ_MIDI_NOTE_OFF = 0x80u;
  9. char* IZ_MIDIGetNoteName(u8);
  10. u8 IZ_MIDIGetNoteFromName(char*);
  11. #endif