mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-14 03:32:00 +00:00
This pull request updates the TGS DMAPI to the latest version. Please note any changes that may be breaking or unimplemented in your codebase by checking what changes are in the definitions file: code/__DEFINES/tgs.dm before merging. Full changelog can be found [here](https://raw.githubusercontent.com/tgstation/tgstation-server/gh-pages/changelog.yml). - Added consumer APIs for overriding HTTP GET implementation. (https://github.com/tgstation/tgstation-server/pull/1853 @Cyberboss) - Fixed Discord documentation links. (https://github.com/tgstation/tgstation-server/pull/1853 @Cyberboss) - Use IETF RFC 2119 wording in documentation. (https://github.com/tgstation/tgstation-server/pull/1853 @Cyberboss) - Populate some documentation comments for previously undocumented public entities. (https://github.com/tgstation/tgstation-server/pull/1853 @Cyberboss) #tgs-dmapi-release Co-authored-by: tgstation-server-ci[bot] <161980869+tgstation-server-ci[bot]@users.noreply.github.com>
23 lines
477 B
Plaintext
23 lines
477 B
Plaintext
#include "core\_definitions.dm"
|
|
#include "core\byond_world_export.dm"
|
|
#include "core\core.dm"
|
|
#include "core\datum.dm"
|
|
#include "core\tgs_version.dm"
|
|
|
|
#ifdef TGS_V3_API
|
|
#include "v3210\api.dm"
|
|
#include "v3210\commands.dm"
|
|
#endif
|
|
|
|
#include "v4\api.dm"
|
|
#include "v4\commands.dm"
|
|
|
|
#include "v5\_defines.dm"
|
|
#include "v5\api.dm"
|
|
#include "v5\bridge.dm"
|
|
#include "v5\chunking.dm"
|
|
#include "v5\commands.dm"
|
|
#include "v5\serializers.dm"
|
|
#include "v5\topic.dm"
|
|
#include "v5\undefs.dm"
|