コード例 #1
0
ファイル: IConomy6Adapter.java プロジェクト: Zrips/Residence
 private static void checkExist(String playerName) {
   Accounts acc = new Accounts();
   if (!acc.exists(playerName)) {
     acc.create(playerName);
   }
 }