Explorar o código

Add application.fam

Ivan Barsukov hai 1 ano
pai
achega
cbafa762b2
Modificáronse 1 ficheiros con 18 adicións e 0 borrados
  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",
+        ),
+    ),
+)