Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1.                     UICheckbox* check = (UICheckbox*)Current;
  2.                     UITextBox* text = (UITextBox*)Current;
  3.                     UILargeButton* but = (UILargeButton*)Current;
  4.                     UISelectionBox* select = (UISelectionBox*)Current;
  5.  
  6.                     if (check)
  7.                         code();
  8.                     else if (text)
  9.                         code();
  10.                     else if (but)
  11.                         code();
  12.                     else if (select)
  13.                         code();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement