ES2 MUD LIB :: 東方故事二(ES2) 天朝帝國 mudlib 瀏覽展示

/doc/lpc/preprocessor/include

HOME :: doc :: lpc :: preprocessor :: include
A line of the form:

#include "filename"

will cause the compiler to pretend that the entire contents of 'filename'
are actually contained in the file being compiled.  If you want to include
a certain function in many different objects, use the 'inherit' statement
instead.  #including causes each object to have it's own copy of the
code, while inheriting causes many objects to share code.

HOME :: doc :: lpc :: preprocessor :: include