-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Chat and Ui modes to LogOnDetails
- Loading branch information
1 parent
1aa5e4a
commit 3f114fa
Showing
5 changed files
with
94 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/main/java/in/dragonbra/javasteam/steam/handlers/steamuser/ChatMode.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package `in`.dragonbra.javasteam.steam.handlers.steamuser | ||
|
||
/** | ||
* Represents the chat mode for logging into Steam. | ||
*/ | ||
@Suppress("unused") | ||
enum class ChatMode(val mode: Int) { | ||
/** | ||
* The default chat mode. | ||
*/ | ||
DEFAULT(0), | ||
|
||
/** | ||
* The chat mode for new Steam group chat. | ||
*/ | ||
NEW_STEAM_CHAT(1), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
src/main/java/in/dragonbra/javasteam/steam/handlers/steamuser/UiMode.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package `in`.dragonbra.javasteam.steam.handlers.steamuser | ||
|
||
/** | ||
* Represents the ui mode for logging into Steam. | ||
*/ | ||
@Suppress("unused") | ||
enum class UiMode(val mode: Int) { | ||
/** | ||
* The default ui mode | ||
*/ | ||
DEFAULT(0), | ||
|
||
/** | ||
* Big Picture ui mode. | ||
*/ | ||
BIG_PICTURE(1), | ||
|
||
/** | ||
* Mobile (phone) ui mode. | ||
*/ | ||
MOBILE(2), | ||
} |