9 lines
285 B
Python
9 lines
285 B
Python
class Block:
|
|
def __init__(self, pos=0, first=0, last=0,
|
|
continuation='', chat_data=[]):
|
|
self.pos = pos
|
|
self.first = first
|
|
self.last = last
|
|
self.temp_last = 0
|
|
self.continuation = continuation
|
|
self.chat_data = chat_data |