16 lines
270 B
C#
16 lines
270 B
C#
|
|
using ServerCore;
|
|
using ServerBase;
|
|
using ServerCommon;
|
|
|
|
|
|
namespace GameServer;
|
|
|
|
public class BattlePlayer : EntityBase
|
|
{
|
|
private Player m_player;
|
|
public BattlePlayer(Player player) : base(EntityType.BattlePlayer)
|
|
{
|
|
m_player = player;
|
|
}
|
|
} |