HaoYueNet/Simple/ClientCore/App.cs

33 lines
806 B
C#
Raw Normal View History

2023-05-25 13:46:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ClientCore.Manager;
using ClientCore.Network;
namespace ClientCore
{
public class App
{
public static string TokenStr;
public static long RID = -1;
public static string IP;
public static int Port;
2023-05-25 18:04:01 +08:00
public static LogManager log;
2023-05-25 13:46:54 +08:00
public static NetworkHelper networkHelper;
public static AppLogin login;
public static AppChat chat;
public static void Init(string IP, int port)
{
2023-05-25 18:04:01 +08:00
log = new LogManager();
2023-05-25 13:46:54 +08:00
networkHelper = new NetworkHelper();
login = new AppLogin();
chat = new AppChat();
networkHelper.Init(IP, port);
}
}
}