mirror of
https://github.com/kuhyx/praca_magisterska.git
synced 2026-07-04 11:43:16 +02:00
6 lines
139 B
Bash
Executable File
6 lines
139 B
Bash
Executable File
#!/bin/bash
|
|
# Build and run the C# shortest-path visualizer (requires .NET SDK + raylib native lib)
|
|
set -e
|
|
cd "$(dirname "$0")"
|
|
dotnet run
|