diff --git a/README.md b/README.md index 37a3c25..a0c0d8b 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ optionally you can add `rev=""` or `rev=""` to specify a specific v The steamworks crate comes bundled with the redistributable dynamic libraries of a compatible version of the SDK. Currently it's v158a. +### Enabling Serde support for Steamworks If you wish to enable serde support add the following: ```toml @@ -31,6 +32,16 @@ If you wish to enable serde support add the following: bevy-steamworks = { git = "https://github.com/QueenOfSquiggles/bevy_steamworks.git", features = ["serde"] } ``` +### Enabling development features + +Some additional features are available for ease of development, notably `SteamworksPlugin::init_dev` which initializes a version of the plugin using the Spacewar App ID which is commonly used for SDK testing since it's an example game by Valve. + +```toml +[dependencies] +bevy-steamworks = { git = "https://github.com/QueenOfSquiggles/bevy_steamworks.git", features = ["dev"] } + +``` + ## Usage To add the plugin to your app, simply add the `SteamworksPlugin` to your