Guest User

Untitled

a guest
Nov 24th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. inherit(lib::cross);
  2. inherit(lib::konst);
  3. inherit(require("common"));
  4.  
  5. return fiber
  6. {
  7. lumen : menu.create_lumen0_default();
  8. lumen.start_in();
  9.  
  10. root_mc : lumen.get_root_mc();
  11.  
  12. while (true) {
  13. if (menu.is_pressed(MENU_BUTTON_CANCEL)) {
  14. menu.play_se("se_sys_decide");
  15. lumen.start_out();
  16. wait_finish(lumen);
  17.  
  18. break;
  19. }
  20.  
  21. yield;
  22. }
  23. }
Add Comment
Please, Sign In to add comment