* crafting fixture update * efefays logic implementation done today: * added game.log log basics for the parser. * updated utf-8 headers.
17 lines
255 B
Python
17 lines
255 B
Python
|
|
L_CMBT = 'CMBT'
|
|
L_WARNING = 'WARNING'
|
|
L_NET = 'NET'
|
|
L_CHAT = 'CHAT'
|
|
|
|
class Log(object):
|
|
matcher = None
|
|
trash = False
|
|
|
|
@classmethod
|
|
def is_handler(cls, log):
|
|
return False
|
|
|
|
def unpack(self):
|
|
pass
|