Added batch scripts to start the game on Windows

pull/62/head
--global 2022-03-10 22:36:21 -05:00
parent 9e447d51a7
commit fac8c6584e
3 changed files with 5 additions and 3 deletions

View File

@ -26,13 +26,13 @@ All assets needed are bundled with the executable.
#### Bleeding edge
If you want the bleeding edge version, download [this](https://github.com/MillaBasset/cambridge/archive/master.zip).
If you want the bleeding edge version, download [this](https://github.com/MillaBasset/cambridge/archive/master.zip). Extract the ZIP to a folder of your choosing.
Extract the ZIP, open a Command Prompt at the folder you extracted Cambridge to, then run this command:
Assuming you're on a 64-bit system, you can double-click `start_win64.bat` to run the game. If that doesn't work, open a Command Prompt where you extracted Cambridge and run:
dist\windows\love.exe .
Alternatively, if you're on a 32-bit system, run this instead:
If you're on a 32-bit system, you'll want to double-click `start_win32.bat`. If that doesn't work, run this instead:
dist\win32\love.exe .

1
start_win32.bat Normal file
View File

@ -0,0 +1 @@
dist\win32\love.exe .

1
start_win64.bat Normal file
View File

@ -0,0 +1 @@
dist\windows\love.exe .