"""An empty application (does nothing).
The absolute minimal PyBevy application. Demonstrates the minimum code needed
to create and run a PyBevy app.
"""frompybevy.preludeimport*@entrypointdefmain(app:App)->App:returnappif__name__=="__main__":main().run()