Difference between revisions of "SourceMod SDK"

From AlliedModders Wiki
Jump to: navigation, search
 
Line 24: Line 24:
 
*For the nightly source code tree, see [http://svn.alliedmods.net/viewvc.cgi/?root=sourcemod SDK ViewVC].
 
*For the nightly source code tree, see [http://svn.alliedmods.net/viewvc.cgi/?root=sourcemod SDK ViewVC].
 
*For the SDK homepage, see [http://www.sourcemod.net/sdk/ http://www.sourcemod.net/sdk/]
 
*For the SDK homepage, see [http://www.sourcemod.net/sdk/ http://www.sourcemod.net/sdk/]
 +
 +
[[Category:SourceMod Development]]

Revision as of 02:22, 26 January 2007

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 (eventually, our own IDE will go here)
  • 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.
  • translations: Translation files.


Further Reading