소스 검색

Add application.fam

Ivan Barsukov 1 년 전
부모
커밋
cbafa762b2
1개의 변경된 파일18개의 추가작업 그리고 0개의 파일을 삭제
  1. 18 0
      application.fam

+ 18 - 0
application.fam

@@ -0,0 +1,18 @@
+App(
+    appid="quadrastic",
+    name="Quadrastic",
+    apptype=FlipperAppType.EXTERNAL,
+    entry_point="game_app",
+    stack_size=1 * 1024,
+    fap_icon="icon.png",
+    fap_category="Games",
+    fap_file_assets="assets",
+    fap_description="Quadrastic a simple addicting game based off a favorite PSP homebrew game called Squarez.",
+    fap_version="1.0.0",
+    fap_extbuild=(
+        ExtFile(
+            path="${FAP_SRC_DIR}/assets",
+            command="${PYTHON3} ${FAP_SRC_DIR}/src/engine/scripts/sprite_builder.py ${FAP_SRC_DIR.abspath}/sprites ${TARGET.abspath}/sprites",
+        ),
+    ),
+)