28 lines
633 B
Python
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
|