4chan-x/src/General/lib/thread.class
2013-08-12 00:07:39 -07:00

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()