2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 
 

19 líneas
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