Esempio n. 1
0
        public override void draw(Graphics g)
        {
            _level?.Draw(g);
            player?.Draw(g);

            if (_otherPlayers != null)
            {
                foreach (Player otherPlayer in _otherPlayers)
                {
                    otherPlayer.Draw(g);
                }
            }
        }