Skip to content

Instantly share code, notes, and snippets.

@PizzaConsole
Created February 21, 2021 22:59
Show Gist options
  • Save PizzaConsole/747b1de50cca4a89a384c3d7890d7dcb to your computer and use it in GitHub Desktop.
Save PizzaConsole/747b1de50cca4a89a384c3d7890d7dcb to your computer and use it in GitHub Desktop.
Bat file to run Godot dedicated server game
@echo OFF
cd Game.Auth
echo starting auth server
start godot -d --no-window
cd ..
cd Game.Gateway
echo starting gateway
start godot -d --no-window
cd ..
cd Game.Server
echo starting game server
start godot -d --no-window
cd ..
cd Game.Client
echo starting game client
start godot -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment