Raylib 3
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.
 
 
 
 

14 lines
467 B

#ifndef DRAWHELPER_H
#define DRAWHELPER_H
#include "constants.h"
Color midiToColor(Note * note);
Color intToColor(int number, int maxnumber);
void drawNoteRect(Note * note, int rotated, int square);
void reduceCountdown(Note * nt, float ft);
float calculateCountdown(float countdown, float ft);
void drawJackPortName(const char * portname, int x, int y, int fontsize, Color color, bool vertical);
bool portShouldDraw(int port);
#endif // not defined DRAWHELPER_H