txtfiles.java 810 B

1234567891011121314151617
  1. //This doesn't do anything yet, eventually you will be able to toggle features by writing true or false in vminecraft-config.txt
  2. //This is high up on my priority list
  3. import java.io.File;
  4. import java.io.FileReader;
  5. import java.io.FileWriter;
  6. import java.io.IOException;
  7. import java.util.Scanner;
  8. import java.util.logging.Level;
  9. import java.util.logging.Logger;
  10. public class txtfiles {
  11. static final Logger log = Logger.getLogger("Minecraft");
  12. private final static Object syncLock = new Object();
  13. static boolean toggle = true;
  14. private PropertiesFile properties;
  15. //Unfinished was interrupted in the middle of making this shit, where we can triggle toggles in a text file for commands
  16. //example return true for greentext=true in vminecraft.properties file would disable that code
  17. }