//輸送体の位置(FE7のみ)
 public static Point GetTransporter(uint mapid, bool isElwood)
 {
     if (Program.ROM.RomInfo.version() != 7)
     {
         return(new Point(65535, 65535));
     }
     if (Program.ROM.RomInfo.is_multibyte())
     {
         return(MapSettingFE7Form.GetTransporter(mapid, isElwood));
     }
     else
     {
         return(MapSettingFE7UForm.GetTransporter(mapid, isElwood));
     }
 }
 static InputFormRef Init(MapSettingFE7Form self)
 {
     return(new InputFormRef(self
                             , ""
                             , Program.ROM.RomInfo.map_setting_pointer()
                             , Program.ROM.RomInfo.map_setting_datasize()
                             , (int i, uint addr) =>
     {
         return IsMapSettingEnd(addr);
     }
                             , (int i, uint addr) =>
     {
         return U.ToHexString(i) + MapSettingForm.GetMapNameWhereAddr(addr);
     }
                             ));
 }