vitality4j/standalone.java

11 lines
475 B
Java
Raw Normal View History

2024-08-09 02:34:32 -04:00
public class standalone {
// This is used when Vitality4J is run from the terminal.
// Don't make calls to anything in the standalone class when using Vitality4j as a library.
//
// This is useful incase the user wants a standalone psarc.exe replacement
// and/or for debugging purposes without another Java project as the interface.
public static void main (String[] args) {
System.out.println("Command line unimplemented."); // todo
}
}