Files
APSly3/Sly3Callbacks.py
2026-01-28 17:49:05 +01:00

12 lines
319 B
Python

from typing import TYPE_CHECKING
if TYPE_CHECKING:
from .Sly3Client import Sly3Context
async def init(ctx: "Sly3Context", ap_connected: bool):
"""Called when the player connects to the AP server or changes map"""
pass
async def update(ctx: "Sly3Context", ap_connected: bool):
"""Called continuously"""
pass