isRunning.lua 327 B

123456789101112131415
  1. return {
  2. summary = 'Check if the Thread is running.',
  3. description = 'Returns whether or not the Thread is currently running.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'running',
  8. type = 'boolean',
  9. description = 'Whether or not the Thread is running.'
  10. }
  11. },
  12. related = {
  13. 'Thread:start'
  14. }
  15. }