Skip to content

Commit 2ad09ae

Browse files
committed
Half-Life SDK 1.0 (SP) -> Half-Life SDK 2.0 (SP)
1 parent 9e4adce commit 2ad09ae

File tree

515 files changed

+90055
-2093
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

515 files changed

+90055
-2093
lines changed

.github/workflows/CI.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
paths-ignore:
6+
- 'README.md'
7+
pull_request:
8+
paths-ignore:
9+
- 'README.md'
10+
workflow_dispatch:
11+
schedule:
12+
- cron: '0 0 1 * *' # Monthly
13+
14+
jobs:
15+
win32:
16+
name: Win32
17+
runs-on: windows-latest
18+
steps:
19+
- uses: actions/checkout@v4
20+
with:
21+
fetch-depth: 0
22+
- name: Install Visual C++ 6.0
23+
run: |
24+
git clone --depth 1 https://github.com/SmileyAG/MSVC60
25+
- name: Build
26+
shell: cmd
27+
run: |
28+
call MSVC60/vc_studio/main/VC98/Bin/VCVars32.bat
29+
msdev src/cl_dll/cl_dll.dsp /make "cl_dll - Win32 Release"
30+
msdev src/cl_dll/cl_dll.dsp /make "cl_dll - Win32 Debug"
31+
msdev src/dlls/hl.dsp /make "hl - Win32 Release"
32+
msdev src/dlls/hl.dsp /make "hl - Win32 Debug"
33+
- name: Upload artifacts
34+
uses: actions/upload-artifact@v4
35+
with:
36+
name: Win32
37+
path: |
38+
src/cl_dll/Release/client.dll
39+
src/cl_dll/Release/client.pdb
40+
src/cl_dll/Debug/client.dll
41+
src/cl_dll/Debug/client.pdb
42+
src/dlls/Releasehl/hl.dll
43+
src/dlls/Releasehl/hl.pdb
44+
src/dlls/debughl/hl.dll
45+
src/dlls/debughl/hl.pdb

docs/Events.doc

30.5 KB
Binary file not shown.

docs/How to make a mod.doc

146 KB
Binary file not shown.

docs/Input.doc

26.5 KB
Binary file not shown.

docs/Modeling Tutorial.doc

117 KB
Binary file not shown.

docs/Modeling for Hallf-Life.doc

530 KB
Binary file not shown.

docs/NetGraph.doc

32 KB
Binary file not shown.

docs/NetworkEntity.doc

33.5 KB
Binary file not shown.

docs/PlayerPhysics.doc

25.5 KB
Binary file not shown.

docs/PortingTips.doc

56.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)