Merge branch 'main' into networking

This commit is contained in:
2026-08-04 09:39:41 -04:00
parent 64e95393c8
commit de8bf25fbe
50 changed files with 768 additions and 299 deletions
@@ -0,0 +1,15 @@
# str1k3r - This prebuild makes sure that the ObjFiles directory exists so the PS3 SPU tasks can properly build
param(
[string]$ProjectDir,
[string]$Configuration
)
$ParentDir = Split-Path -Path $ProjectDir -Parent
$directories = @(
"ObjFiles\$Configuration"
)
foreach ($dir in $directories) {
New-Item -ItemType Directory -Path (Join-Path $ParentDir $dir) -Force | Out-Null
}