Spiel für das Medientheater HBK Saar, Teil des Projektes "Fun Palace" (Reupload der Repository von 2017)
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Victor Giers 82c534459a reupload vor 3 Jahren
..
data reupload vor 3 Jahren
README.md reupload vor 3 Jahren
flexibleButton.pde reupload vor 3 Jahren

README.md

A button class for creating buttons with individual position, image and action.
The action to run is determined by its name.

Button(
int X, //x-position
int Y, //y-position
int W, //width
int H, //height
String Img, //image name (image must be in data-folder)
String WTD // what to do - every button carries all functions you want to be able to call. which function gets called is selected by the buttons name. THIS IS DIRTY, implement arraylist if you like, or some fancy case-table.. oh well
)