mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
20 lines
312 B
Python
20 lines
312 B
Python
from PikaObj import *
|
|
import PikaStdData
|
|
|
|
class Task(TinyObj):
|
|
task_list = PikaStdData.List()
|
|
def __init__():
|
|
pass
|
|
|
|
def call_always(fun_todo: any):
|
|
pass
|
|
|
|
def do_when(fun_todo: any, fun_when: any):
|
|
pass
|
|
|
|
def run_once():
|
|
pass
|
|
|
|
def run_always():
|
|
pass
|