Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.26 KB | None | 0 0
  1. typedef struct{
  2.     int x;
  3.     int y;
  4.     int width;
  5.     int height;
  6.     char text;
  7. }Button;
  8. ////
  9.  
  10.  
  11. typedef struct{
  12.     Button buttons;
  13.  
  14.  
  15. } Screen;
  16.  
  17. Button asdasd123;
  18.  
  19.  
  20. typedef struct{
  21.  
  22.     Button selectGameButtons = {
  23.             {asdasd123.x = 10}
  24.  
  25.     };
  26.  
  27.  
  28. }gameStates;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement