application.fam 643 B

123456789101112131415161718
  1. App(
  2. appid="flip_world",
  3. name="FlipWorld",
  4. apptype=FlipperAppType.EXTERNAL,
  5. entry_point="flip_world_main",
  6. stack_size=4 * 1024,
  7. fap_icon="app.png",
  8. fap_category="GPIO",
  9. fap_description="Open World Multiplayer game, best played with the VGM."
  10. fap_icon_assets="assets",
  11. fap_file_assets="assets", # Do not touch this and the next line, it is needed to generate sprites
  12. fap_extbuild=(
  13. ExtFile(
  14. path="${FAP_SRC_DIR}/assets",
  15. command="${PYTHON3} ${FAP_SRC_DIR}/engine/scripts/sprite_builder.py ${FAP_SRC_DIR.abspath}/sprites ${TARGET.abspath}/sprites",
  16. ),
  17. ),
  18. )