Guest User

Untitled

a guest
Sep 23rd, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. void MWindow::Draw()
  2. {
  3. gPaint.DrawFilledRectWithBorder(this->posX, this->posY, this->sizeW, this->sizeH, this->borderSize, this->color, this->borderColorU, this->borderColorR, this->borderColorB, this->borderColorL);
  4.  
  5. for (const auto &child : this->children)
  6. child->Draw();
  7. }
Add Comment
Please, Sign In to add comment