예제 #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());
 }