updated project files and created scripts

This commit is contained in:
2025-12-27 00:00:15 +05:00
parent 7c4c0d4776
commit 46d99f5baf
13 changed files with 172 additions and 190 deletions

10
install.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -eo pipefail
# symlink to ???/SpaceEngineers/Bin64
GAME_BIN64_PATH="Bin64"
BUILD_PATH="bin"
for f in $(find "$BUILD_PATH" -type f); do
cp -v "$f" "$GAME_BIN64_PATH"
done