示例#1
0
文件: MapInfo.cs 项目: fos83/MuEmu
        public void DelPlayer(Character @char)
        {
            var pos = @char.Position;

            ClearAttribute(pos.X, pos.Y, MapAttributes.Stand);
            Players.Remove(@char);
            PlayerLeaves?.Invoke(@char.Player, new EventArgs());
        }
示例#2
0
文件: MapInfo.cs 项目: tbs005/MuEmu
 public void DelPlayer(Character @char)
 {
     Players.Remove(@char);
     PlayerLeaves?.Invoke(@char.Player, new EventArgs());
 }