mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-25 06:17:59 +01:00
6 lines
236 B
Java
6 lines
236 B
Java
package com.minelittlepony.unicopia;
|
|
|
|
public interface Debug {
|
|
boolean DEBUG_SPELLBOOK_CHAPTERS = Boolean.getBoolean("unicopia.debug.spellbookChapters");
|
|
boolean DEBUG_COMMANDS = Boolean.getBoolean("unicopia.debug.commands");
|
|
}
|