This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! python2 | |
# -*- coding: utf-8 -*- | |
# 九张羊皮纸 STEAM版用 联机辅助脚本 | |
# 本脚本用于,减少STEAM游戏九张羊皮纸在线游戏时的频繁掉线现象。 | |
# 安装方法: | |
# 1, 请去Python官方网站下载Python 2.7版安装程序并安装。 | |
# 版本一定必须是2.7或其子版本,若使用3以上版本将无法正确运行。 | |
# 2, 请修改操作系统中的HOSTS文件,增加条目: 127.0.0.1 master.frozenbyte-online.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Runtime.CompilerServices; | |
using System.Threading.Tasks; | |
public static class TaskTupleExtensions | |
{ | |
#region (Task<T1>) | |
public static TaskAwaiter<T1> GetAwaiter<T1>(this ValueTuple<Task<T1>> tasks) | |
{ |