mini-led-cube/editor/src/display.h
Aaron Mueller 2694d9988f Implement the LED voltage switch.
LEDs can now be switched on or off with the mouse. The current
state of the LEd cube is saved in a array which can be easily
printed out to STDOUT.
2011-10-31 00:25:07 +01:00

15 lines
157 B
C

#ifndef _DISPLAY_H
#define _DISPLAY_H
void drawLEDs(int mode);
void drawWires();
void display();
void displayPickingObjects();
void setScene();
#endif