-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
577 additions
and
9 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
26 changes: 26 additions & 0 deletions
26
Crowbar/Core/SteamAppInfos/ZombiePanicSourceSteamAppInfo.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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Imports System.ComponentModel | ||
Imports System.IO | ||
Imports Steamworks | ||
|
||
Public Class ZombiePanicSourceSteamAppInfo | ||
Inherits SteamAppInfoBase | ||
|
||
Public Sub New() | ||
MyBase.New() | ||
|
||
Me.ID = New AppId_t(17500) | ||
Me.Name = "Zombie Panic! Source" | ||
Me.UsesSteamUGC = True | ||
Me.CanUseContentFolderOrFile = False | ||
'Me.ContentFileExtensionsAndDescriptions.Add("vpk", "Source Engine VPK Files") | ||
Me.TagsControlType = GetType(ZombiePanicSourceTagsUserControl) | ||
End Sub | ||
|
||
Public Enum ZombiePanicSourceTypeTags | ||
<Description("GameMode")> GameMode | ||
<Description("Custom Models")> CustomModels | ||
<Description("Custom Sounds")> CustomSounds | ||
<Description("Miscellaneous")> Miscellaneous | ||
End Enum | ||
|
||
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
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
Oops, something went wrong.