Skip to content

Commit

Permalink
Add Enums (#61)
Browse files Browse the repository at this point in the history
add enums
  • Loading branch information
hjorslev authored Mar 10, 2024
1 parent 2e754ee commit cf77fbc
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions SteamPS/Enum/Enum.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
enum ServerType {
Dedicated = 0x64 #d
NonDedicated = 0x6C #l
SourceTV = 0x70 #p
}
enum OSType {
Linux = 108 #l
Windows = 119 #w
Mac = 109 #m
MacOsX = 111 #o
}
enum VAC {
Unsecured = 0
Secured = 1
}
enum Visibility {
Public = 0
Private = 1
}

0 comments on commit cf77fbc

Please sign in to comment.