Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. import mc
  2.  
  3. __name__ = "Tweak Name"
  4. __version__ = "Version of Tweak"
  5. __description__ = "Description of the Tweak"
  6.  
  7. def onclick():
  8. # This happens when the item in the list is clicked
  9.  
  10. def onload():
  11. # Callback for the module to happen during the onload in the app
  12.  
  13. def onunload():
  14. # Callback for the module to happen during the onunload in the app
  15.  
  16. ## INIT CODE ##
  17. # Anything we want to happen when the module first gets loaded do here
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement