mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-05-06 01:19:35 +08:00
22 lines
640 B
C#
22 lines
640 B
C#
using FunGame.Core.Api.Model.Entity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FunGame.Desktop.Models.Config
|
|
{
|
|
public class Usercfg
|
|
{
|
|
/**
|
|
* 玩家设定内容
|
|
*/
|
|
public static User? LoginUser = null; // 已登录的用户
|
|
public static string LoginUserName = ""; // 已登录用户名
|
|
public static bool Match_Mix = false; // 混战模式选项
|
|
public static bool Match_Team = false; // 团队模式选项
|
|
public static bool Match_HasPass = false; // 密码房间选项
|
|
}
|
|
}
|