mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-22 07:31:37 +00:00
## About The Pull Request it's - conjunction of "it" and "is" its - possessive form of "it" grammar is hard, and there were a lot of places where "it's" was used where it shouldn't have been. i went and painstakingly searched the entire repository for these instances, spending a few hours on it. i completely ignored the changelog archive, and i may have missed some outliers. most player-facing ones should be corrected, though ## Why It's Good For The Game proper grammar is good ## Changelog 🆑 spellcheck: Numerous instances of "it's" have been properly replaced with "its" /🆑
14 lines
842 B
Markdown
14 lines
842 B
Markdown
# DMAPI Internals
|
|
|
|
This folder should be placed on its own inside a codebase that wishes to use the TGS DMAPI. Warranty void if modified.
|
|
|
|
- [includes.dm](./includes.dm) is the file that should be included by DM code, it handles including the rest.
|
|
- The [core](./core) folder includes all code not directly part of any API version.
|
|
- The other versioned folders contain code for the different DMAPI versions.
|
|
- [v3210](./v3210) contains the final TGS3 API.
|
|
- [v4](./v4) is the legacy DMAPI 4 (Used in TGS 4.0.X versions).
|
|
- [v5](./v5) is the current DMAPI version used by TGS >=4.1.
|
|
- [LICENSE](./LICENSE) is the MIT license for the DMAPI.
|
|
|
|
APIs communicate with TGS in two ways. All versions implement TGS -> DM communication using /world/Topic. DM -> TGS communication, called the bridge method, is different for each version.
|