Spiel für das Medientheater HBK Saar, Teil des Projektes "Fun Palace" (Reupload der Repository von 2017)
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
Victor Giers 82c534459a reupload 2 anos atrás
..
data reupload 2 anos atrás
README.md reupload 2 anos atrás
flexibleButton.pde reupload 2 anos atrás

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
)