directly use /src

This commit is contained in:
pikastech 2022-01-05 10:20:45 +08:00
parent 5de559e817
commit a2733eb896
5 changed files with 63 additions and 2 deletions

View File

@ -0,0 +1,14 @@
class TinyObj:
pass
class BaseObj(TinyObj):
pass
def print(val: any):
pass
def set(argPath: str, val: any):
pass

View File

@ -0,0 +1,49 @@
from PikaObj import *
class MemChecker(TinyObj):
def max():
pass
def now():
pass
def getMax() -> float:
pass
def getNow() -> float:
pass
def resetMax():
pass
class SysObj(BaseObj):
def type(arg: any):
pass
def remove(argPath: str):
pass
def int(arg: any) -> int:
pass
def float(arg: any) -> float:
pass
def iter(arg: any) -> any:
pass
def next(arg: any) -> any:
pass
def range(a1: int, a2: int, a3: int) -> any:
pass
class RangeObj(TinyObj):
def __iter__() -> any:
pass
def __next__() -> any:
pass

Binary file not shown.

View File

@ -1,2 +0,0 @@
pikascript-core==v1.2.8
PikaStdLib==v1.2.4

Binary file not shown.