blob: a568d827101eaa85b4cba91b5dc75f782a97a440 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package kr.syeyoung.dungeonsguide;
/**
* This exists, so we can reload the mod/ download a more recent version
*/
public interface IDungeonGuide {
void init();
void preinit();
}
|