where is main in the SDK files

Anddos

Hunter
Joined
Oct 3, 2003
Messages
68
Reaction score
0
well i am taking alook at the modding side of things ,,
does all these cpp files and h files have 1 main where the game first runs from
i am not sure where to start
 
yeah, I'm kind of wondering myself. does this have a base class that everything derrives from like unreal?
 
I was wondering about this too, but I think the "Main" is the HL2.exe. In other words, you cant access the source for the main, only the files in the SDK. I might be wrong, though.
 
It's in the engine. You're compiling DLLs - all of the functions and objects you code are called by main.cpp (and other derivatives) in the actual game EXE.

-Angry Lawyer
 
Angry Lawyer said:
It's in the engine. You're compiling DLLs - all of the functions and objects you code are called by main.cpp (and other derivatives) in the actual game EXE.

-Angry Lawyer

Ah, so I was right. Cool.
 
Back
Top