SourceMod SDK

From AlliedModders Wiki
Revision as of 11:48, 3 October 2015 by Xerox8521 (talk | contribs) (Further Reading)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The SourceMod SDK is the Software Development Kit for writing SourceMod Extensions and Plugins. This article briefly introduces it.

Directory Structure

  • configs: Configuration files that SourceMod uses
  • editor: Editor related files
  • extensions: Publicly open-sourced extensions.
    • geoip: GeoIP extension.
    • threader: Threading extension.
  • plugins: SourceMod plugin implementations.
    • include: Include files and their documentation.
  • public: Public interface files.
    • doxygen: The SDK Doxygen file.
    • extensions: Public interface files that come from extensions.
    • licenses: License information.
    • sample_ext: A sample extension.
    • sourcepawn: SourcePawn header files.
  • sourcepawn: SourcePawn files.
    • compiler: SourcePawn compiler source code.
  • translations: Translation files.

Further Reading