Kefta / gmod-module-base

The base interface to create binary modules for Garry's Mod

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gmod-module-base

Technically everything you need is in include.

Example contains an example project. Running BuildProjects.bat requires premake4 (http://industriousone.com/premake).

The generated dlls should be placed in

garrysmod/lua/bin/

They should also be named approriately.

gmsv_example_win32.dll <- require( 'example' ) serverside on windows gmsv_example_linux.dll <- require( 'example' ) serverside on linux gmsv_example_osx.dll <- require( 'example' ) serverside on osx

gmcl_nutsack_win32.dll <- require( 'nutsack' ) clientside on windows gmcl_example_osx.dll <- require( 'example' ) clientside on osx

About

The base interface to create binary modules for Garry's Mod


Languages

Language:C++ 80.7%Language:C 12.4%Language:Lua 7.0%