-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ADDED: Support for "JBMod" steam workshop.
Cleanup of PR #41.
- Loading branch information
Showing
5 changed files
with
155 additions
and
149 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,19 @@ | ||
Imports System.ComponentModel | ||
Imports System.IO | ||
Imports Steamworks | ||
|
||
Public Class JBmodSteamAppInfo | ||
Inherits SteamAppInfoBase | ||
Imports System.ComponentModel | ||
Imports System.IO | ||
Imports Steamworks | ||
|
||
Public Sub New() | ||
MyBase.New() | ||
Public Class JBModSteamAppInfo | ||
Inherits SteamAppInfoBase | ||
|
||
Me.ID = New AppId_t(2158860) | ||
Me.Name = "JBmod" | ||
Me.UsesSteamUGC = True | ||
Me.CanUseContentFolderOrFile = False | ||
'Me.ContentFileExtensionsAndDescriptions.Add("vpk", "Source Engine VPK Files") | ||
Me.TagsControlType = GetType(JBModTagsUserControl) | ||
End Sub | ||
Public Sub New() | ||
MyBase.New() | ||
|
||
Public Enum ZombiePanicSourceTypeTags | ||
<Description("GameMode")> GameMode | ||
<Description("Custom Models")> CustomModels | ||
<Description("Custom Sounds")> CustomSounds | ||
<Description("Miscellaneous")> Miscellaneous | ||
End Enum | ||
|
||
End Class | ||
Me.ID = New AppId_t(2158860) | ||
Me.Name = "JBMod" | ||
Me.UsesSteamUGC = True | ||
Me.CanUseContentFolderOrFile = False | ||
'Me.ContentFileExtensionsAndDescriptions.Add("vpk", "Source Engine VPK Files") | ||
Me.TagsControlType = GetType(JBModTagsUserControl) | ||
End Sub | ||
|
||
End Class |
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
247 changes: 125 additions & 122 deletions
247
Crowbar/Widgets/Publish SteamApp Tags/JBModTagsUserControl.Designer.vb
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
Crowbar/Widgets/Publish SteamApp Tags/JBModTagsUserControl.vb
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Public Class JBmodTagsUserControl | ||
|
||
End Class | ||
Public Class JBModTagsUserControl | ||
|
||
End Class |