添加字段

back_recharge
jiahuiwen 2019-03-12 09:37:39 +08:00
parent 6d89769a68
commit 724211771b
2 changed files with 20 additions and 0 deletions

View File

@ -19,6 +19,7 @@ public class SItem implements BaseConfig {
private int rewardGroup;
private int usePerCount;
private boolean isopen;
private int isSave;
@Override
public void init() throws Exception {
@ -68,4 +69,8 @@ public class SItem implements BaseConfig {
public boolean isIsopen() {
return isopen;
}
public int getIsSave() {
return isSave;
}
}

View File

@ -0,0 +1,15 @@
package com.ljsd.jieling.handler.map;
import com.ljsd.jieling.logic.dao.Equip;
import com.ljsd.jieling.logic.dao.Item;
import java.util.HashMap;
import java.util.Map;
public class TemporaryItems {
public Map<Integer, Item> items = new HashMap<>();
public Map<Integer, Equip> equips = new HashMap<>();
}