Steamworks.SteamGameServer.SetGameDescription C# (CSharp) Method

SetGameDescription() public static method

/ Description of the game. This is a required field and is displayed in the steam server browser....for now.

/ This is a required field, but it will go away eventually, as the data should be determined from the AppID.

public static SetGameDescription ( string pszGameDescription ) : void
pszGameDescription string
return void
		public static void SetGameDescription(string pszGameDescription) {
			InteropHelp.TestIfAvailableGameServer();
			using (var pszGameDescription2 = new InteropHelp.UTF8StringHandle(pszGameDescription)) {
				NativeMethods.ISteamGameServer_SetGameDescription(pszGameDescription2);
			}
		}