14 lines
349 B
Bash
14 lines
349 B
Bash
#!/usr/bin/env bash
|
|
# Shared constants and helpers for all run scripts
|
|
|
|
RED='\033[0;31m'
|
|
GREEN='\033[0;32m'
|
|
YELLOW='\033[1;33m'
|
|
BLUE='\033[0;34m'
|
|
DIM='\033[2m'
|
|
NC='\033[0m'
|
|
|
|
GODOT_BIN="flatpak run --user org.godotengine.Godot"
|
|
GAME_DIR="$REPO_ROOT/src/game"
|
|
SIMULATOR_DIR="$REPO_ROOT/src/simulator"
|
|
GUIDE_DIR="$REPO_ROOT/games/age-of-dwarves/guide"
|