2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

19 righe
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