Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. Color menu_text(255, 255, 255); //255, 255, 255
  2. static int Width = 610; // Window Width
  3. static int Height = 560; // Window Height
  4.  
  5. g_pSurface->FilledRect(_pos.x - 5, _pos.y - 5, Width + 10, Height + 10, Color(0, 0, 0, 200));
  6. g_pSurface->FilledRect(_pos.x - 5, _pos.y - 5, Width + 10, Height + 10, Color(40, 40, 40, 255));
  7. g_pSurface->OutlinedRect(_pos.x - 6, _pos.y - 6, Width + 12, Height + 6 + 6 - 1, Color(65, 65, 65, 255));
  8. g_pSurface->OutlinedRect(_pos.x - 1, _pos.y - 1, Width + 2, Height + 2, Color(65, 65, 65, 255));
  9. g_pSurface->FilledRect(_pos.x, _pos.y, Width, Height, Color(15, 15, 15, 255));
  10. g_pSurface->OutlinedRect(_pos.x, _pos.y, Width, Height, Color(0, 0, 0, 255));
  11. g_pSurface->OutlinedRect(_pos.x - 7, _pos.y - 7, Width + 14, Height + 13, Color(0, 0, 0, 255));
  12. g_pSurface->OutlinedRect(_pos.x, _pos.y, Width, Height, Color(9, 9, 9, 255));
  13.  
  14.  
  15.  
  16. g_pSurface->FilledRect(_pos.x + 5, _pos.y + 11, 600, 40 + 10, Color(0, 0, 0, 200));
  17.  
  18. g_pSurface->OutlinedRect(_pos.x + 9, _pos.y + 14, 590 + 2, 40 + 2 - 5, Color(65, 65, 65, 255));
  19. g_pSurface->FilledRect(_pos.x + 10, _pos.y + 15, 590, 40 - 5, Color(15, 15, 15, 255));
  20. g_pSurface->FilledRect(_pos.x + 10, _pos.y + 15, 590, 2, Color(255, 255, 255));
  21. g_pSurface->OutlinedRect(_pos.x + 10, _pos.y + 15, 590, 40 - 5, Color(0, 0, 0, 255));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement