20 lines
340 B
Python
Raw Normal View History

from PikaObj import *
2022-09-14 13:46:19 +08:00
class MemChecker:
2022-05-25 15:42:25 +08:00
def max(self): ...
def now(self): ...
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
2022-05-25 15:42:25 +08:00
def getMax(self) -> float: ...
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
2022-05-25 15:42:25 +08:00
def getNow(self) -> float: ...
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
2022-05-25 15:42:25 +08:00
def resetMax(self): ...
2021-10-01 20:00:15 +08:00
class SysObj:
pass