浏览代码

Added section about Steam.

woollybah 5 年之前
父节点
当前提交
b8cfc17867
共有 1 个文件被更改,包括 7 次插入4 次删除
  1. 7 4
      docs/api/intro.md

+ 7 - 4
docs/api/intro.md

@@ -16,16 +16,19 @@ perhaps more familiarly as `namespaces`.
 The Blitz Runtime Libraries (`BRL`), contain the core of BlitzMax functionality that you
 The Blitz Runtime Libraries (`BRL`), contain the core of BlitzMax functionality that you
 are likely to use from day to day.
 are likely to use from day to day.
 
 
-The `PUB` modscope generally contains third party libraries and platform-specific
-helpers. These are considered more low-level, and generally you won't use
-these modules directly.
-
 `MaxGUI` provides access to native windowing toolkits, such as Cocoa on macOS
 `MaxGUI` provides access to native windowing toolkits, such as Cocoa on macOS
 and GTK+3 on Linux, allowing you to build complex user interface-driven
 and GTK+3 on Linux, allowing you to build complex user interface-driven
 applications.
 applications.
 
 
+The `PUB` modscope generally contains third party libraries and platform-specific
+helpers. These are considered more low-level, and generally you won't use
+these modules directly.
+
 The `SDL` modscope can be used as a replacement graphics and system-integration
 The `SDL` modscope can be used as a replacement graphics and system-integration
 backend for the default modules provided by `BRL`. It is optional on the main
 backend for the default modules provided by `BRL`. It is optional on the main
 desktop platforms, but generally required on the other targets (iOS, Android, rpi, NX).
 desktop platforms, but generally required on the other targets (iOS, Android, rpi, NX).
 It is a full implementation of SDL in BlitzMax, including SDL's Render and Window subsystems,
 It is a full implementation of SDL in BlitzMax, including SDL's Render and Window subsystems,
 which can be used directly if preferred.
 which can be used directly if preferred.
+
+The `Steam` modscope is for integrating your game with Steam, providing access to all the commonly used Steam APIs,
+such as friends, leader boards and Steam Workshop.