TODO.txt 314 B

1234567891011121314
  1. Texture atlases with the new model spec system.
  2. Multiplayer
  3. Modular GUIs
  4. Useful regex-expressions:
  5. --------------------------------
  6. private int location_(.*);
  7. to
  8. protected UniformMatrix $1 = new UniformMatrix("$1");
  9. ------------------------------------
  10. super.loadInt\(location_(.*), (.)\);
  11. to
  12. $1.loadTexUnit($2);