summaryrefslogtreecommitdiff
path: root/game/python-extra/tmw/map.py
blob: 5dd2109a9a4417b9be460dbc4253378b33506702 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python3
from .packets_in import in_packets
from .packets_out import out_packets


class Map(object):
    def __init__(self, socket, debugging=False):
        self.socket = socket
        self.debugging = debugging

# placeholder