sampy3/sampy/network/game.py
2023-03-15 07:12:47 +01:00

13 lines
271 B
Python

from __future__ import annotations
from typing import TYPE_CHECKING, Tuple
if TYPE_CHECKING:
from sampy.server import Server
class Game:
@staticmethod
async def on_packet(server: Server, packet: bytes, addr: Tuple[str, int]) -> bool:
return False