mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
19 lines
438 B
C#
19 lines
438 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Milimoe.FunGame.Core.Entity.General;
|
|
|
|
namespace Milimoe.FunGame.Desktop.Others
|
|
{
|
|
public class Usercfg
|
|
{
|
|
/**
|
|
* 玩家设定内容
|
|
*/
|
|
public static User? LoginUser = null; // 已登录的用户
|
|
public static string LoginUserName = ""; // 已登录用户名
|
|
}
|
|
}
|