14 lines
173 B
Python
14 lines
173 B
Python
'''
|
|
while True:
|
|
harvest()
|
|
#do_a_flip()
|
|
'''
|
|
|
|
while True:
|
|
if can_harvest():
|
|
harvest()
|
|
else:
|
|
do_a_flip()
|
|
#?翻跟头干什么
|
|
#虽然会浪费一秒钟,但是好玩~
|