mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-29 17:22:56 +08:00
21 lines
361 B
Python
21 lines
361 B
Python
from PikaObj import *
|
|
import PikaStdData
|
|
|
|
class Task(TinyObj):
|
|
task_list_always = PikaStdData.List()
|
|
task_list_when = PikaStdData.List()
|
|
def __init__():
|
|
pass
|
|
|
|
def call_always(fun_todo: any):
|
|
pass
|
|
|
|
def call_when(fun_todo: any, fun_when: any):
|
|
pass
|
|
|
|
def run_once():
|
|
pass
|
|
|
|
def run_always():
|
|
pass
|