2022-01-20 19:56:43 +08:00
|
|
|
from PikaObj import *
|
|
|
|
import PikaStdData
|
|
|
|
|
2022-01-23 21:50:05 +08:00
|
|
|
|
2022-01-20 19:56:43 +08:00
|
|
|
class Task(TinyObj):
|
2022-01-24 18:50:20 +08:00
|
|
|
calls = PikaStdData.List()
|
2022-01-23 21:50:05 +08:00
|
|
|
|
2022-01-20 19:56:43 +08:00
|
|
|
def __init__():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def call_always(fun_todo: any):
|
|
|
|
pass
|
|
|
|
|
2022-01-20 21:50:38 +08:00
|
|
|
def call_when(fun_todo: any, fun_when: any):
|
2022-01-20 19:56:43 +08:00
|
|
|
pass
|
|
|
|
|
2022-01-23 21:50:05 +08:00
|
|
|
def call_period_ms(fun_todo: any, period_ms: int):
|
|
|
|
pass
|
|
|
|
|
2022-01-20 19:56:43 +08:00
|
|
|
def run_once():
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run_always():
|
|
|
|
pass
|
2022-01-23 21:50:05 +08:00
|
|
|
|
|
|
|
def platformGetTick():
|
|
|
|
pass
|