| 12345678910111213141516 |
- App(
- appid="asteroids",
- name="Asteroids",
- apptype=FlipperAppType.EXTERNAL,
- entry_point="asteroids_app_entry",
- cdefines=["APP_PROTOVIEW"],
- requires=["gui"],
- stack_size=8 * 1024,
- order=50,
- fap_icon="appicon.png",
- fap_category="Games",
- fap_icon_assets="assets", # Image assets to compile for this application
- fap_description="An implementation of the classic arcade game Asteroids",
- fap_author="antirez, SimplyMinimal",
- fap_weburl="https://github.com/SimplyMinimal/FlipperZero-Asteroids",
- )
|