Files

29 lines
880 B
Markdown
Raw Permalink Normal View History

2021-02-10 13:11:58 -05:00
"# luprex"
2023-02-14 14:05:45 -05:00
Directory Structure:
cpp - C++ source code
cpp/core - C++ source code for the engine proper
cpp/drv - C++ source code for the driver
cpp/wrap - C++ STL classes reconfigured to use eng-malloc
ext - external third-party libraries
ext/dlmalloc.c - Doug Lea's malloc (used by eng-malloc)
ext/openssl - Header files for our version of openssl
ext/openssl-linux - Library files for openssl, compiled for linux
ext/openssl-mingw - Library files for openssl, compiled for mingw
ext/eris-master - The C code for the lua interpreter, eris lua.
obj - a place to store compiled C++ object code
obj/core - Compiled from cpp/core
obj/drv - Compiled from cpp/drv
obj/eris - Compiled from ext/eris-master
lua - game code written in lua
misc - a place for tinkering, not part of the main project