Kaba class Thread ed

...

Syntax ed

class Thread

    # constructors
    func mut __init__()

    # functions
    func is_done() -> bool
    func mut join()
    func mut kill()
    func virtual on_run()
    func mut run()
    func static self() -> Thread*

Functions ed

func is_done() -> bool
...

func mut join()
...

func mut kill()
...

func virtual on_run()
...

func mut run()
...

func static self() -> Thread*
...