public int GetCurrentMenuFileID() { if (CurrentMaid == null) { return(0); } var prop = CurrentMaid.GetProp(CurrentSlot.mpn); if (prop != null) { return(prop.nFileNameRID); } LogUtil.Log("maid prop is null", CurrentSlot.mpn); return(0); }
public string GetCurrentMenuFile() { if (CurrentMaid == null) { return(null); } var prop = CurrentMaid.GetProp(CurrentSlot.mpn); if (prop != null) { return(prop.strFileName); } LogUtil.Log("maid prop is null", CurrentSlot.mpn); return(null); }