14 lines
239 B
Plaintext
Executable File
14 lines
239 B
Plaintext
Executable File
class Thread
|
|
callbacks: []
|
|
toString: -> @ID
|
|
|
|
constructor: (@ID, @board) ->
|
|
@fullID = "#{@board}.#{@ID}"
|
|
@posts = {}
|
|
|
|
g.threads[@fullID] = board.threads[@] = @
|
|
|
|
kill: ->
|
|
@isDead = true
|
|
@timeOfDeath = Date.now()
|