API Initialization
Like what your seeing?
Support us as a GitHub Sponsor and get instant access to all our assets, exclusive tools and assets, escalated support and issue tracking and our gratitude. These articles are made possible by our GitHub Sponsors ... become a sponsor today!
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.
Initialize the Steam API ... which is done via the API.App.Server.Initialize(...) method
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