initialize standalone OpenFL application structure with essential files and configurations

This commit is contained in:
2025-04-09 02:37:12 +02:00
parent d533ffd7a8
commit 8c36316409
12 changed files with 471 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
# Navigate to the project directory
cd "$(dirname "$0")"
# Compile the project using the Haxe compiler with the specified build.hxml configuration
haxe build.hxml
# Check if the compilation was successful
if [ $? -eq 0 ]; then
echo "Compilation successful!"
else
echo "Compilation failed!"
fi