Skip to content

Commit

Permalink
Added new functions to main class
Browse files Browse the repository at this point in the history
  • Loading branch information
Gramps committed Apr 3, 2024
1 parent 1b8e5d7 commit 6b4f2d0
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions docs/classes/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,78 @@
## :material-function-variant: Functions
==}

### getSteamID32

!!! function "getSteamID32( ```uint64_t``` steam_id )"
Convert a SteamID64 into a SteamID.

**Returns:** uint32_t

**Note:** This function is only in GodotSteam.

### isAnonAccount

!!! function "isAnonAccount( ```uint64_t``` steam_id )"
Is this an anonymous account?

**Returns:** bool

**Note:** While this is not listed in the Steamworks docs, it is in the SDK.

### isAnonUserAccount

!!! function "isAnonUserAccount( ```uint64_t``` steam_id )"
Is this an anonymous user account? Used to create an account or reset a password, but do not try to do this.

**Returns:** bool

**Note:** While this is not listed in the Steamworks docs, it is in the SDK.

### isChatAccount

!!! function "isChatAccount( ```uint64_t``` steam_id )"
Is this a chat account ID?

**Returns:** bool

**Note:** While this is not listed in the Steamworks docs, it is in the SDK.

### isClanAccount

!!! function "isClanAccount( ```uint64_t``` steam_id )"
Is this a clan account ID?

**Returns:** bool

**Note:** While this is not listed in the Steamworks docs, it is in the SDK.

### isConsoleUserAccount

!!! function "isConsoleUserAccount( ```uint64_t``` steam_id )"
Is this a faked up Steam ID for a PSN friend account?

**Returns:** bool

**Note:** While this is not listed in the Steamworks docs, it is in the SDK.

### isIndividualAccount

!!! function "isIndividualAccount( ```uint64_t``` steam_id )"
Is this an individual user account ID?

**Returns:** bool

**Note:** While this is not listed in the Steamworks docs, it is in the SDK.

### isLobby

!!! function "isLobby( ```uint64_t``` steam_id )"
Is this a lobby account ID?

**Returns:** bool

**Note:** While this is not listed in the Steamworks docs, it is in the SDK.

### isSteamRunning

!!! function "isSteamRunning()"
Expand Down

0 comments on commit 6b4f2d0

Please sign in to comment.