20 lines
381 B
C#
20 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SimpleClient
|
|
{
|
|
public class StaticComm
|
|
{
|
|
public static string TokenStr;
|
|
public static long RID = -1;
|
|
public static string IP;
|
|
public static int Port;
|
|
|
|
|
|
public static NetworkHelper networkHelper;
|
|
}
|
|
}
|