25 lines
1.2 KiB
Bash
25 lines
1.2 KiB
Bash
|
#!/usr/bin/sh
|
||
|
|
||
|
# This script clones all of the original id Software source code releases.
|
||
|
# It is important to study the source code of what's come before you so you can
|
||
|
# learn of previous people's mistakes and be the best game developer.
|
||
|
|
||
|
git clone https://github.com/id-Software/wolf3d
|
||
|
git clone https://github.com/id-Software/wolf3d-browser
|
||
|
git clone https://github.com/id-Software/DOOM
|
||
|
git clone https://github.com/id-Software/DOOM-IOS2
|
||
|
git clone https://github.com/id-Software/Quake
|
||
|
git clone https://github.com/id-Software/quake-rerelease-qc
|
||
|
git clone https://github.com/id-Software/Quake-Tools
|
||
|
git clone https://github.com/id-Software/Quake-2
|
||
|
git clone https://github.com/id-Software/quake2-rerelease-dll
|
||
|
git clone https://github.com/id-Software/Quake-2-Tools
|
||
|
git clone https://github.com/id-Software/Quake-III-Arena
|
||
|
git clone https://github.com/id-Software/RTCW-SP
|
||
|
git clone https://github.com/id-Software/RTCW-MP
|
||
|
git clone https://github.com/id-Software/Enemy-Territory
|
||
|
git clone https://github.com/id-Software/DOOM-3
|
||
|
git clone https://github.com/id-Software/DOOM-3-BFG
|
||
|
git clone https://github.com/id-Software/GtkRadiant
|
||
|
git clone https://github.com/id-Software/idsetup
|