mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
15 lines
341 B
C#
15 lines
341 B
C#
using EggLink.DanhengServer.Game.Player;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Game
|
|
{
|
|
public class BasePlayerManager(PlayerInstance player)
|
|
{
|
|
public PlayerInstance Player { get; private set; } = player;
|
|
}
|
|
}
|