Added item names and descriptions, better unlock menu

This commit is contained in:
Anuken
2018-06-30 00:09:16 -04:00
parent bebc1a22f3
commit c0a649ffcb
12 changed files with 156 additions and 12 deletions

View File

@@ -19,4 +19,7 @@ public interface UnlockableContent extends Content{
/**This should show all necessary info about this content in the specified table.*/
void displayInfo(Table table);
/**Called when this content is unlocked. Use this to unlock other related content.*/
default void onUnlock(){}
}