Page cover image

API Initialization

Like what your seeing?

Introduction

Initialize Steam API with Heathen's API wrapper. This is the simplest method in terms of steps to perform but requires the most understanding and code from you while also giving you the most amount of control over the process.

Simply use the API.App.Client.Initialize(...) or the API.App.Server.Initialize(...) method. For client builds you would obviously use the Client version and for Server builds you use the server version. The articles linked for each will explain each method in more detail.

Steam Game Server

When working with the Steam Game Server API there are two stages to making the API ready for use.

  1. Initialize the Steam API ... which is done via the API.App.Server.Initialize(...) method

  2. Log the server on ... which is done via the API.App.Server.LogOn() method

Note that you can configure automatic logon in the Steam Game Server Configuraiton object you pass into the Initialize method. This will instruct our system to "log on" as soon as initialization is complete.

Last updated