Initial commit

This commit is contained in:
61616
2022-03-31 14:53:00 -04:00
commit f6ef69b52f
9 changed files with 464 additions and 0 deletions

10
fActionFlags.pde Normal file
View File

@@ -0,0 +1,10 @@
/*
Public flags to control certain actions, mostly for gui interaction with the simulation
*/
class ActionFlags {
boolean centerOnFocus = false;
boolean nameTags = true;
}