Advertisement
justync7

icoutils

Jul 4th, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. icoutils={}
  2.  
  3. function icoutils.clearIcon(x,y)
  4. term.setCursorPos(x,y)
  5. term.write(" ")
  6. end
  7.  
  8. function icoutils.setIcon(x,y,char)
  9. term.setCursorPos(x,y)
  10. term.write(char)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement