Advertisement
Guest User

Untitled

a guest
May 28th, 2015
2,447
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. local Notification = {}
  2.  
  3. function Notification.unload() end
  4. function Notification.init() end
  5. function Notification.tick() end
  6.  
  7. function notify(msg)
  8. UI._SET_NOTIFICATION_TEXT_ENTRY("STRING")
  9. UI._ADD_TEXT_COMPONENT_STRING(msg)
  10. UI._DRAW_NOTIFICATION(FALSE, FALSE)
  11. end
  12.  
  13. return Notification
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement