Пример #1
0
        public void Draw(RenderContext context)
        {
            if (!Editor.IsVisible)
            {
                Vga.Draw(context);
            }
            else
            {
                Editor.Draw(context);
            }

            if (_currentNotification != null)
            {
                _currentNotification.Draw(context);
            }
        }