CCT.NUI.Visual.HandLayer.Paint C# (CSharp) Method

Paint() public method

public Paint ( Graphics g ) : void
g System.Drawing.Graphics
return void
        public override void Paint(Graphics g)
        {
            var brushSwitcher = new BrushSwitcher();
            foreach (var hand in this.dataSource.CurrentValue.Hands)
            {
                PaintHand(g, hand);
            }
        }