Files
TransPyC/.transpyc_cache/b7eeff93aa63e70f.pyi
2026-07-18 19:25:40 +08:00

25 lines
671 B
Python

"""
Auto-generated Python stub file from namespace_defs.py
Module: namespace_defs
"""
import stdio
import t, c
@t.CVTable
class Widget:
id: t.CInt
def __init__(self: Widget, i: t.CInt) -> t.CInt: pass
def GetId(self: Widget) -> t.CInt: pass
def Render(self: Widget) -> t.CInt: pass
class Gadget(Widget):
extra: t.CInt
def __init__(self: Gadget, i: t.CInt, e: t.CInt) -> t.CInt: pass
def Render(self: Gadget) -> t.CInt: pass
def GetExtra(self: Gadget) -> t.CInt: pass
class PlainStruct:
x: t.CInt
y: t.CInt
def __init__(self: PlainStruct, ax: t.CInt, ay: t.CInt) -> t.CInt: pass
def Sum(self: PlainStruct) -> t.CInt: pass