添加字段
parent
6d89769a68
commit
724211771b
|
@ -19,6 +19,7 @@ public class SItem implements BaseConfig {
|
||||||
private int rewardGroup;
|
private int rewardGroup;
|
||||||
private int usePerCount;
|
private int usePerCount;
|
||||||
private boolean isopen;
|
private boolean isopen;
|
||||||
|
private int isSave;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init() throws Exception {
|
public void init() throws Exception {
|
||||||
|
@ -68,4 +69,8 @@ public class SItem implements BaseConfig {
|
||||||
public boolean isIsopen() {
|
public boolean isIsopen() {
|
||||||
return isopen;
|
return isopen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getIsSave() {
|
||||||
|
return isSave;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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<>();
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue