Struct GameFolderLocator.SteamLibraryGameInfo
- Namespace
- ValveResourceFormat.IO
- Assembly
- ValveResourceFormat.dll
Represents an installed Steam app (game, tool, application, etc.)
public record struct GameFolderLocator.SteamLibraryGameInfo : IEquatable<GameFolderLocator.SteamLibraryGameInfo>Implements
Inherited Members
Constructors
SteamLibraryGameInfo(int, string, string, string)
Represents an installed Steam app (game, tool, application, etc.)
public SteamLibraryGameInfo(int AppID, string AppName, string SteamPath, string GamePath)Parameters
AppIDint-
AppID of the app.
AppNamestring-
Name of the app.
SteamPathstring-
Path to the root of the Steam library where this app is installed. ("C:/Steam/steamapps")
GamePathstring-
Full path to the installation directory of the app. ("C:/Steam/steamapps/common/dota 2 beta")
Properties
AppID
AppID of the app.
public int AppID { readonly get; set; }Property Value
AppName
Name of the app.
public string AppName { readonly get; set; }Property Value
GamePath
Full path to the installation directory of the app. ("C:/Steam/steamapps/common/dota 2 beta")
public string GamePath { readonly get; set; }Property Value
SteamPath
Path to the root of the Steam library where this app is installed. ("C:/Steam/steamapps")
public string SteamPath { readonly get; set; }