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