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

28 lines
633 B
Python

"""
Auto-generated Python stub file from oop_test.py
Module: oop_test
"""
import stdio
import t, c
class Point:
x: t.CInt
y: t.CInt
def MoveTo(self: Point, nx: t.CInt, ny: t.CInt) -> t.CInt: pass
def GetX(self: Point) -> t.CInt: pass
def GetY(self: Point) -> t.CInt: pass
class Counter:
count: t.CInt = 0
step: t.CInt = 1
def Increment(self: Counter) -> t.CInt: pass
def Reset(self: Counter) -> t.CInt: pass
class Rect:
width: t.CInt
height: t.CInt
def __init__(self: Rect, w: t.CInt, h: t.CInt) -> t.CInt: pass
def Area(self: Rect) -> t.CInt: pass
def oop_test() -> int: pass