parent
f71cb4c032
commit
c8a82fd858
5 changed files with 21 additions and 6 deletions
@ -0,0 +1,9 @@ |
||||
package xyz.soukup.mineconomiaCoreV2.core; |
||||
|
||||
import static xyz.soukup.mineconomiaCoreV2.core.sharedValues.config; |
||||
|
||||
public class database { |
||||
private void createDefaultTables(){ |
||||
String database = config.getString(""); |
||||
} |
||||
} |
||||
@ -1,12 +1,11 @@ |
||||
package xyz.soukup.mineconomiaCoreV2.core; |
||||
package xyz.soukup.mineconomiaCoreV2.tools; |
||||
|
||||
import org.bukkit.configuration.file.YamlConfiguration; |
||||
import org.bukkit.inventory.Inventory; |
||||
|
||||
import static xyz.soukup.mineconomiaCoreV2.core.sharedValues.config; |
||||
import static xyz.soukup.mineconomiaCoreV2.core.sharedValues.plugin; |
||||
|
||||
public class MsgRetriever { |
||||
public class LangManager { |
||||
|
||||
public static YamlConfiguration lang = null; |
||||
public static void loadLang(){ |
||||
@ -1,4 +1,4 @@ |
||||
package tools; |
||||
package xyz.soukup.mineconomiaCoreV2.tools; |
||||
|
||||
import org.bukkit.inventory.Inventory; |
||||
import org.bukkit.inventory.ItemStack; |
||||
@ -1,2 +1,8 @@ |
||||
version: 1.0 |
||||
language: "czech.yml" |
||||
language: "czech.yml" |
||||
database: |
||||
host: localhost |
||||
port: 3306 |
||||
user: mcore |
||||
password: mcore |
||||
database: mcore |
||||
Loading…
Reference in new issue