2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

19 satır
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