application.fam 714 B

123456789101112131415161718192021
  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/FlipperHTTP",
  9. fap_description="The first open-world multiplayer game, best played with the VGM.",
  10. fap_icon_assets="assets",
  11. fap_file_assets="file_assets",
  12. fap_extbuild=(
  13. ExtFile(
  14. path="${FAP_SRC_DIR}/file_assets",
  15. command="${PYTHON3} ${FAP_SRC_DIR}/engine/scripts/sprite_builder.py ${FAP_SRC_DIR.abspath}/sprites ${TARGET.abspath}/sprites",
  16. ),
  17. ),
  18. fap_author="JBlanked",
  19. fap_weburl="https://github.com/jblanked/FlipWorld",
  20. fap_version="0.8.3",
  21. )