mirror of
https://github.com/sourabhv/FlapPyBird.git
synced 2024-11-25 16:35:52 +08:00
7 lines
108 B
Python
7 lines
108 B
Python
import asyncio
|
|
|
|
from src.flappy import Flappy
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(Flappy().start())
|