pybevy 0.2.1

PyBevy: A Python Real-Time Engine Built on Bevy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""An empty application (does nothing).

The absolute minimal PyBevy application. Demonstrates the minimum code needed
to create and run a PyBevy app.
"""

from pybevy.prelude import *


@entrypoint
def main(app: App) -> App:
    return app


if __name__ == "__main__":
    main().run()