https://github.com/timschumi/gmod-gmcompat
A Garry's Mod Library abstracting differences between gamemodes.
https://github.com/timschumi/gmod-gmcompat
garrysmod lua
Last synced: about 2 months ago
JSON representation
A Garry's Mod Library abstracting differences between gamemodes.
- Host: GitHub
- URL: https://github.com/timschumi/gmod-gmcompat
- Owner: timschumi
- License: mit
- Created: 2020-04-16T23:38:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-14T19:17:43.000Z (over 1 year ago)
- Last Synced: 2025-01-26T17:47:55.098Z (4 months ago)
- Topics: garrysmod, lua
- Language: Lua
- Homepage: https://steamcommunity.com/sharedfiles/filedetails/?id=2063714458
- Size: 82 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gmcompat (Gamemode Abstraction Library)
This plugin is available on the [Steam Workshop](https://steamcommunity.com/sharedfiles/filedetails/?id=2063714458).
This is a support library providing abstraction functions independent of
the currently used gamemode.I will try my best to keep the API stable going forward.
## Usage
gmcompat isn't a normal module due to restrictions of the Garry's Mod LUA API.
Instead, it is a normal LUA file that should be included.```
-- This will provide a global `gmcompat` table providing all the functions and constants.
include("gmcompat.lua")
```