mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
17 lines
545 B
Plaintext
17 lines
545 B
Plaintext
App(
|
|
appid="asteroids",
|
|
name="Asteroids",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="asteroids_app_entry",
|
|
cdefines=["APP_ASTEROIDS"],
|
|
requires=["gui"],
|
|
stack_size=8 * 1024,
|
|
order=50,
|
|
fap_icon="appicon.png",
|
|
fap_icon_assets="assets", # Image assets to compile for this application
|
|
fap_category="Games",
|
|
fap_description="An implementation of the classic arcade game Asteroids",
|
|
fap_author="antirez, SimplyMinimal",
|
|
fap_weburl="https://github.com/SimplyMinimal/FlipperZero-Asteroids",
|
|
)
|