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!
text 0.27 KB | None | 0 0
  1. void Main()
  2. {
  3. int count = 0;
  4. Font font(50);
  5. Point pos(0, 200);
  6.  
  7. while (System::Update())
  8. {
  9. if (Input::MouseL.clicked) {
  10. ++count;
  11. }
  12. if (Input::KeyZ.clicked) {
  13. --count;
  14. }
  15. font(count).draw();
  16. Point delta = Mouse::Delta();
  17. //font(delta).draw(pos);
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement