TODO.txt 412 B

12345678910111213141516
  1. All Masters, Renderers, etc. should be objects, not static
  2. Reflectivity uniform vars
  3. Multiplayer
  4. Modular GUIs
  5. - Make text variables uniform/ change text rendering method
  6. Useful regex-expressions:
  7. --------------------------------
  8. private int location_(.*);
  9. to
  10. protected UniformMatrix $1 = new UniformMatrix("$1");
  11. ------------------------------------
  12. super.loadInt\(location_(.*), (.)\);
  13. to
  14. $1.loadTexUnit($2);