2022-08-24 12:04:53 +08:00
|
|
|
from PikaObj import *
|
2022-09-14 13:46:19 +08:00
|
|
|
|
2023-05-22 09:53:50 +08:00
|
|
|
|
2022-07-14 08:36:02 +00:00
|
|
|
class MemChecker:
|
2022-05-25 15:42:25 +08:00
|
|
|
def max(self): ...
|
|
|
|
def now(self): ...
|
2022-08-24 12:04:53 +08:00
|
|
|
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
2022-05-25 15:42:25 +08:00
|
|
|
def getMax(self) -> float: ...
|
2022-08-24 12:04:53 +08:00
|
|
|
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
2022-05-25 15:42:25 +08:00
|
|
|
def getNow(self) -> float: ...
|
2022-08-24 12:04:53 +08:00
|
|
|
|
|
|
|
@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
|
|
|
|
|
|
|
|
2022-07-14 08:36:02 +00:00
|
|
|
class SysObj:
|
2023-05-22 09:53:50 +08:00
|
|
|
pass
|