Initial Commit
This commit is contained in:
commit
9ae7e45911
116 changed files with 6876 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
Reference in a new issue