public void Draw( Graphic graphic, GameTime gameTime )
 {
     this._owner.BuildControl.VertexContainer.Draw( graphic );
 }
 public DrawElementsControler( Graphic graphic )
 {
     Contract.Requires( graphic != null );
     this._graphic = graphic;
 }