3
0
Fork 0

Initial Commit

This commit is contained in:
BuildTools 2021-06-19 19:50:37 +02:00
commit 9ae7e45911
116 changed files with 6876 additions and 0 deletions

View file

@ -0,0 +1,13 @@
package nl.iobyte.themepark.logger;
public class ThemeParkLogger {
/**
* Print message to the console
* @param msg Message string
*/
public static void toConsole(String msg) {
System.out.println("[ThemePark] "+msg);
}
}