├── ChangeLog.txt ├── Introduction ├── english │ ├── category.png │ ├── classify.png │ └── screenshot.png └── simple-chinese │ ├── category.png │ ├── classify.png │ ├── patch │ ├── category.ini │ ├── classify.ini │ ├── patch.zip │ └── regex.ini │ └── screenshot.png ├── LICENSE ├── README.md ├── Release ├── L4D2ModManager.exe ├── Microsoft.WindowsAPICodePack.Shell.dll ├── Microsoft.WindowsAPICodePack.dll ├── Newtonsoft.Json.dll ├── Release.zip ├── delegate.exe ├── steam_api.dll ├── steam_api64.dll └── uchardet.dll └── SourceCode ├── L4D2ModManager.sln ├── L4D2ModManager ├── App.config ├── App.xaml ├── App.xaml.cs ├── BindingConverter │ ├── ListviewCategoryRowConverter.cs │ ├── ListviewCellColorConverter.cs │ ├── ListviewCollisionColorConverter.cs │ ├── ListviewTooltipConverter.cs │ └── StringDisplayConverter.cs ├── CSSTL │ └── Set.cs ├── CategorySelecter.cs ├── Configure.cs ├── CtlExtension.cs ├── CustomInformation.cs ├── Facepunch.Steamworks.dll ├── Fork │ ├── Facepunch.Steamworks │ │ ├── BaseSteamworks.cs │ │ ├── Callbacks │ │ │ └── Index.cs │ │ ├── Client.cs │ │ ├── Client │ │ │ ├── Achievements.cs │ │ │ ├── App.cs │ │ │ ├── Auth.cs │ │ │ ├── Friends.cs │ │ │ ├── Image.cs │ │ │ ├── Leaderboard.cs │ │ │ ├── Lobby.LobbyData.cs │ │ │ ├── Lobby.cs │ │ │ ├── LobbyList.Lobby.cs │ │ │ ├── LobbyList.cs │ │ │ ├── MicroTransactions.cs │ │ │ ├── Overlay.cs │ │ │ ├── RemoteStorage.File.cs │ │ │ ├── RemoteStorage.FileStream.cs │ │ │ ├── RemoteStorage.cs │ │ │ ├── Screenshots.cs │ │ │ ├── ServerList.Request.cs │ │ │ ├── ServerList.Server.cs │ │ │ ├── ServerList.cs │ │ │ ├── Stats.cs │ │ │ ├── SteamFriend.cs │ │ │ ├── User.cs │ │ │ └── Voice.cs │ │ ├── Config.cs │ │ ├── EncodingHelper.cs │ │ ├── ForkInfo.txt │ │ ├── Interfaces │ │ │ ├── Inventory.Definition.cs │ │ │ ├── Inventory.Item.cs │ │ │ ├── Inventory.Result.cs │ │ │ ├── Inventory.cs │ │ │ ├── Networking.cs │ │ │ ├── Workshop.Editor.cs │ │ │ ├── Workshop.Item.cs │ │ │ ├── Workshop.Query.cs │ │ │ └── Workshop.cs │ │ ├── Interop │ │ │ └── Native.cs │ │ ├── LICENSE │ │ ├── Server.cs │ │ ├── Server │ │ │ ├── Auth.cs │ │ │ ├── Query.cs │ │ │ ├── ServerInit.cs │ │ │ └── Stats.cs │ │ ├── SteamNative │ │ │ ├── SteamNative.Callback.cs │ │ │ ├── SteamNative.Constants.cs │ │ │ ├── SteamNative.Enums.cs │ │ │ ├── SteamNative.Helpers.cs │ │ │ ├── SteamNative.Platform.Interface.cs │ │ │ ├── SteamNative.Platform.Linux32.cs │ │ │ ├── SteamNative.Platform.Linux64.cs │ │ │ ├── SteamNative.Platform.Mac.cs │ │ │ ├── SteamNative.Platform.Win32.cs │ │ │ ├── SteamNative.Platform.Win64.cs │ │ │ ├── SteamNative.Platform.cs │ │ │ ├── SteamNative.SteamApi.cs │ │ │ ├── SteamNative.SteamAppList.cs │ │ │ ├── SteamNative.SteamApps.cs │ │ │ ├── SteamNative.SteamClient.cs │ │ │ ├── SteamNative.SteamController.cs │ │ │ ├── SteamNative.SteamFriends.cs │ │ │ ├── SteamNative.SteamGameServer.cs │ │ │ ├── SteamNative.SteamGameServerStats.cs │ │ │ ├── SteamNative.SteamHTMLSurface.cs │ │ │ ├── SteamNative.SteamHTTP.cs │ │ │ ├── SteamNative.SteamInventory.cs │ │ │ ├── SteamNative.SteamMatchmaking.cs │ │ │ ├── SteamNative.SteamMatchmakingServers.cs │ │ │ ├── SteamNative.SteamMusic.cs │ │ │ ├── SteamNative.SteamMusicRemote.cs │ │ │ ├── SteamNative.SteamNetworking.cs │ │ │ ├── SteamNative.SteamParentalSettings.cs │ │ │ ├── SteamNative.SteamRemoteStorage.cs │ │ │ ├── SteamNative.SteamScreenshots.cs │ │ │ ├── SteamNative.SteamUGC.cs │ │ │ ├── SteamNative.SteamUser.cs │ │ │ ├── SteamNative.SteamUserStats.cs │ │ │ ├── SteamNative.SteamUtils.cs │ │ │ ├── SteamNative.SteamVideo.cs │ │ │ ├── SteamNative.Structs.cs │ │ │ └── SteamNative.Types.cs │ │ ├── Utility.cs │ │ └── Utility │ │ │ └── SourceServerQuery.cs │ ├── Notepadplusplus │ │ └── Uchardet.cs │ ├── SharpVPK │ │ ├── ArchivePart.cs │ │ ├── Exceptions │ │ │ └── ArchiveParsingException.cs │ │ ├── ForkInfo.txt │ │ ├── IVpkArchiveHeader.cs │ │ ├── LICENSE │ │ ├── V1 │ │ │ ├── VpkArchiveHeaderV1.cs │ │ │ └── VpkReaderV1.cs │ │ ├── V2 │ │ │ ├── VpkArchiveHeaderV2.cs │ │ │ └── VpkReaderV2.cs │ │ ├── VpkArchive.cs │ │ ├── VpkDirectory.cs │ │ ├── VpkEntry.cs │ │ └── VpkReaderBase.cs │ └── UniversalCharacterDetection │ │ ├── ByteBuffer.cs │ │ ├── Constants.cs │ │ ├── ICharsetListener.cs │ │ ├── Prober │ │ ├── Big5Prober.cs │ │ ├── CharsetProber.cs │ │ ├── ContextAnalysis │ │ │ ├── EUCJPContextAnalysis.cs │ │ │ ├── JapaneseContextAnalysis.cs │ │ │ └── SJISContextAnalysis.cs │ │ ├── DistributionAnalysis │ │ │ ├── Big5DistributionAnalysis.cs │ │ │ ├── CharDistributionAnalysis.cs │ │ │ ├── EUCJPDistributionAnalysis.cs │ │ │ ├── EUCKRDistributionAnalysis.cs │ │ │ ├── EUCTWDistributionAnalysis.cs │ │ │ ├── GB2312DistributionAnalysis.cs │ │ │ ├── JISDistributionAnalysis.cs │ │ │ └── SJISDistributionAnalysis.cs │ │ ├── EUCJPProber.cs │ │ ├── EUCKRProber.cs │ │ ├── EUCTWProber.cs │ │ ├── EscCharsetProber.cs │ │ ├── GB18030Prober.cs │ │ ├── HebrewProber.cs │ │ ├── Latin1Prober.cs │ │ ├── MBCSGroupProber.cs │ │ ├── SBCSGroupProber.cs │ │ ├── SJISProber.cs │ │ ├── Sequence │ │ │ ├── BulgarianModel.cs │ │ │ ├── CyrillicModel.cs │ │ │ ├── GreekModel.cs │ │ │ ├── HebrewModel.cs │ │ │ ├── Ibm855Model.cs │ │ │ ├── Ibm866Model.cs │ │ │ ├── Koi8rModel.cs │ │ │ ├── Latin5BulgarianModel.cs │ │ │ ├── Latin5Model .cs │ │ │ ├── Latin7Model.cs │ │ │ ├── MacCyrillicModel.cs │ │ │ ├── SequenceModel.cs │ │ │ ├── Win1251BulgarianModel.cs │ │ │ ├── Win1251Model.cs │ │ │ └── Win1253Model.cs │ │ ├── SingleByteCharsetProber.cs │ │ ├── StateMachine │ │ │ ├── Big5SMModel.cs │ │ │ ├── CodingStateMachine.cs │ │ │ ├── EUCJPSMModel.cs │ │ │ ├── EUCKRSMModel.cs │ │ │ ├── EUCTWSMModel.cs │ │ │ ├── GB18030SMModel.cs │ │ │ ├── HZSMModel.cs │ │ │ ├── ISO2022CNSMModel.cs │ │ │ ├── ISO2022JPSMModel.cs │ │ │ ├── ISO2022KRSMModel.cs │ │ │ ├── PkgInt.cs │ │ │ ├── SJISSMModel.cs │ │ │ ├── SMModel.cs │ │ │ ├── UCS2BESMModel.cs │ │ │ └── UTF8SMModel.cs │ │ └── UTF8Prober.cs │ │ ├── UniversalCharacterDetection.csproj │ │ └── UniversalDetector.cs ├── L4D2MM.cs ├── L4D2Mod.cs ├── L4D2ModManager.csproj ├── L4D2Resource.cs ├── L4D2TxtReader.cs ├── L4D2Type.cs ├── LanguageHelper.cs ├── Logging.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Newtonsoft.Json.dll ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Icon │ │ ├── icon.png │ │ ├── icon.psd │ │ └── icon128.ico │ └── Langs │ │ ├── en-US.xaml │ │ └── zh-CN.xaml ├── SteamAppId.cs ├── SteamDelegate.cs ├── StringAdapter.cs ├── ViewItem.cs ├── WebHelper.cs ├── WindowCallbacks.cs ├── WindowCategory.xaml ├── WindowCategory.xaml.cs ├── WindowClassify.xaml ├── WindowClassify.xaml.cs ├── WindowColors.xaml ├── WindowColors.xaml.cs ├── WindowLanguage.xaml ├── WindowLanguage.xaml.cs ├── WindowSetValue.xaml ├── WindowSetValue.xaml.cs ├── WinformAdapter.cs ├── bin │ ├── Debug │ │ ├── steam_api.dll │ │ ├── steam_api64.dll │ │ └── uchardet.dll │ └── Release │ │ ├── steam_api.dll │ │ ├── steam_api64.dll │ │ └── uchardet.dll ├── icon128.ico ├── packages.config ├── steam_api.dll ├── steam_api64.dll └── uchardet.dll ├── README.md └── SteamDelegate ├── public └── steam │ ├── isteamapplist.h │ ├── isteamapps.h │ ├── isteamappticket.h │ ├── isteamclient.h │ ├── isteamcontroller.h │ ├── isteamfriends.h │ ├── isteamgamecoordinator.h │ ├── isteamgameserver.h │ ├── isteamgameserverstats.h │ ├── isteamhtmlsurface.h │ ├── isteamhttp.h │ ├── isteaminventory.h │ ├── isteammasterserverupdater.h │ ├── isteammatchmaking.h │ ├── isteammusic.h │ ├── isteammusicremote.h │ ├── isteamnetworking.h │ ├── isteamparentalsettings.h │ ├── isteamps3overlayrenderer.h │ ├── isteamremotestorage.h │ ├── isteamscreenshots.h │ ├── isteamugc.h │ ├── isteamuser.h │ ├── isteamuserstats.h │ ├── isteamutils.h │ ├── isteamvideo.h │ ├── lib │ ├── linux32 │ │ └── libsdkencryptedappticket.so │ ├── linux64 │ │ └── libsdkencryptedappticket.so │ ├── osx32 │ │ └── libsdkencryptedappticket.dylib │ ├── win32 │ │ ├── sdkencryptedappticket.dll │ │ └── sdkencryptedappticket.lib │ └── win64 │ │ ├── sdkencryptedappticket64.dll │ │ └── sdkencryptedappticket64.lib │ ├── matchmakingtypes.h │ ├── steam_api.h │ ├── steam_api.json │ ├── steam_api_flat.h │ ├── steam_api_internal.h │ ├── steam_api_interop.cs │ ├── steam_gameserver.h │ ├── steamclientpublic.h │ ├── steamencryptedappticket.h │ ├── steamhttpenums.h │ ├── steamps3params.h │ ├── steamtypes.h │ └── steamuniverse.h ├── redistributable_bin ├── linux32 │ └── libsteam_api.so ├── linux64 │ └── libsteam_api.so ├── osx32 │ └── libsteam_api.dylib ├── steam_api.dll ├── steam_api.lib └── win64 │ ├── steam_api64.dll │ └── steam_api64.lib └── steamworksexample ├── Main.cpp ├── SteamworksExample.sh ├── SteamworksExample.sln ├── SteamworksExample.vcproj ├── SteamworksExample.vcxproj ├── stdafx.cpp └── stdafx.h /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /Introduction/english/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/english/category.png -------------------------------------------------------------------------------- /Introduction/english/classify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/english/classify.png -------------------------------------------------------------------------------- /Introduction/english/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/english/screenshot.png -------------------------------------------------------------------------------- /Introduction/simple-chinese/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/simple-chinese/category.png -------------------------------------------------------------------------------- /Introduction/simple-chinese/classify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/simple-chinese/classify.png -------------------------------------------------------------------------------- /Introduction/simple-chinese/patch/category.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/simple-chinese/patch/category.ini -------------------------------------------------------------------------------- /Introduction/simple-chinese/patch/classify.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/simple-chinese/patch/classify.ini -------------------------------------------------------------------------------- /Introduction/simple-chinese/patch/patch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/simple-chinese/patch/patch.zip -------------------------------------------------------------------------------- /Introduction/simple-chinese/patch/regex.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/simple-chinese/patch/regex.ini -------------------------------------------------------------------------------- /Introduction/simple-chinese/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Introduction/simple-chinese/screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/README.md -------------------------------------------------------------------------------- /Release/L4D2ModManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Release/L4D2ModManager.exe -------------------------------------------------------------------------------- /Release/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Release/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /Release/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Release/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /Release/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Release/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Release/Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Release/Release.zip -------------------------------------------------------------------------------- /Release/delegate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Release/delegate.exe -------------------------------------------------------------------------------- /Release/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Release/steam_api.dll -------------------------------------------------------------------------------- /Release/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Release/steam_api64.dll -------------------------------------------------------------------------------- /Release/uchardet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/Release/uchardet.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager.sln -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/App.config -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/App.xaml -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/App.xaml.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/BindingConverter/ListviewCategoryRowConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/BindingConverter/ListviewCategoryRowConverter.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/BindingConverter/ListviewCellColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/BindingConverter/ListviewCellColorConverter.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/BindingConverter/ListviewCollisionColorConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/BindingConverter/ListviewCollisionColorConverter.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/BindingConverter/ListviewTooltipConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/BindingConverter/ListviewTooltipConverter.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/BindingConverter/StringDisplayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/BindingConverter/StringDisplayConverter.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/CSSTL/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/CSSTL/Set.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/CategorySelecter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/CategorySelecter.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Configure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Configure.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/CtlExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/CtlExtension.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/CustomInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/CustomInformation.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Facepunch.Steamworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Facepunch.Steamworks.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/BaseSteamworks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/BaseSteamworks.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Callbacks/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Callbacks/Index.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Achievements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Achievements.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/App.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Auth.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Friends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Friends.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Image.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Leaderboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Leaderboard.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Lobby.LobbyData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Lobby.LobbyData.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Lobby.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Lobby.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/LobbyList.Lobby.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/LobbyList.Lobby.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/LobbyList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/LobbyList.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/MicroTransactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/MicroTransactions.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Overlay.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/RemoteStorage.File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/RemoteStorage.File.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/RemoteStorage.FileStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/RemoteStorage.FileStream.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/RemoteStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/RemoteStorage.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Screenshots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Screenshots.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/ServerList.Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/ServerList.Request.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/ServerList.Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/ServerList.Server.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/ServerList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/ServerList.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Stats.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/SteamFriend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/SteamFriend.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/User.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Voice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Client/Voice.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Config.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/EncodingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/EncodingHelper.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/ForkInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/ForkInfo.txt -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Inventory.Definition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Inventory.Definition.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Inventory.Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Inventory.Item.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Inventory.Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Inventory.Result.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Inventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Inventory.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Networking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Networking.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Workshop.Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Workshop.Editor.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Workshop.Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Workshop.Item.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Workshop.Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Workshop.Query.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Workshop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interfaces/Workshop.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interop/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Interop/Native.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/LICENSE -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server/Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server/Auth.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server/Query.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server/ServerInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server/ServerInit.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Server/Stats.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Callback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Callback.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Constants.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Enums.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Helpers.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Interface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Interface.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Linux32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Linux32.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Linux64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Linux64.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Mac.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Mac.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Win32.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Win64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.Win64.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Platform.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamApi.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamAppList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamAppList.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamApps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamApps.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamClient.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamController.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamFriends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamFriends.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamGameServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamGameServer.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamGameServerStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamGameServerStats.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamHTMLSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamHTMLSurface.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamHTTP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamHTTP.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamInventory.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamMatchmaking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamMatchmaking.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamMatchmakingServers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamMatchmakingServers.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamMusic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamMusic.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamMusicRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamMusicRemote.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamNetworking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamNetworking.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamParentalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamParentalSettings.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamRemoteStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamRemoteStorage.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamScreenshots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamScreenshots.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamUGC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamUGC.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamUser.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamUserStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamUserStats.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamUtils.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamVideo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.SteamVideo.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Structs.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/SteamNative/SteamNative.Types.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Utility.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Utility/SourceServerQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Facepunch.Steamworks/Utility/SourceServerQuery.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/Notepadplusplus/Uchardet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/Notepadplusplus/Uchardet.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/ArchivePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/ArchivePart.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/Exceptions/ArchiveParsingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/Exceptions/ArchiveParsingException.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/ForkInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/ForkInfo.txt -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/IVpkArchiveHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/IVpkArchiveHeader.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/LICENSE -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/V1/VpkArchiveHeaderV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/V1/VpkArchiveHeaderV1.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/V1/VpkReaderV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/V1/VpkReaderV1.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/V2/VpkArchiveHeaderV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/V2/VpkArchiveHeaderV2.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/V2/VpkReaderV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/V2/VpkReaderV2.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/VpkArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/VpkArchive.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/VpkDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/VpkDirectory.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/VpkEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/VpkEntry.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/SharpVPK/VpkReaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/SharpVPK/VpkReaderBase.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/ByteBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/ByteBuffer.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Constants.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/ICharsetListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/ICharsetListener.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Big5Prober.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Big5Prober.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/CharsetProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/CharsetProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/ContextAnalysis/EUCJPContextAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/ContextAnalysis/EUCJPContextAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/ContextAnalysis/JapaneseContextAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/ContextAnalysis/JapaneseContextAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/ContextAnalysis/SJISContextAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/ContextAnalysis/SJISContextAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/Big5DistributionAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/Big5DistributionAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/CharDistributionAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/CharDistributionAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/EUCJPDistributionAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/EUCJPDistributionAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/EUCKRDistributionAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/EUCKRDistributionAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/EUCTWDistributionAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/EUCTWDistributionAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/GB2312DistributionAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/GB2312DistributionAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/JISDistributionAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/JISDistributionAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/SJISDistributionAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/DistributionAnalysis/SJISDistributionAnalysis.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/EUCJPProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/EUCJPProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/EUCKRProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/EUCKRProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/EUCTWProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/EUCTWProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/EscCharsetProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/EscCharsetProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/GB18030Prober.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/GB18030Prober.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/HebrewProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/HebrewProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Latin1Prober.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Latin1Prober.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/MBCSGroupProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/MBCSGroupProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/SBCSGroupProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/SBCSGroupProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/SJISProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/SJISProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/BulgarianModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/BulgarianModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/CyrillicModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/CyrillicModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/GreekModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/GreekModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/HebrewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/HebrewModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Ibm855Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Ibm855Model.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Ibm866Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Ibm866Model.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Koi8rModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Koi8rModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Latin5BulgarianModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Latin5BulgarianModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Latin5Model .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Latin5Model .cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Latin7Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Latin7Model.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/MacCyrillicModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/MacCyrillicModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/SequenceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/SequenceModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Win1251BulgarianModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Win1251BulgarianModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Win1251Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Win1251Model.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Win1253Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/Sequence/Win1253Model.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/SingleByteCharsetProber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/SingleByteCharsetProber.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/Big5SMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/Big5SMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/CodingStateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/CodingStateMachine.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/EUCJPSMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/EUCJPSMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/EUCKRSMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/EUCKRSMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/EUCTWSMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/EUCTWSMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/GB18030SMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/GB18030SMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/HZSMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/HZSMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/ISO2022CNSMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/ISO2022CNSMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/ISO2022JPSMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/ISO2022JPSMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/ISO2022KRSMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/ISO2022KRSMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/PkgInt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/PkgInt.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/SJISSMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/SJISSMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/SMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/SMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/UCS2BESMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/UCS2BESMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/UTF8SMModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/StateMachine/UTF8SMModel.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/UTF8Prober.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/Prober/UTF8Prober.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/UniversalCharacterDetection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/UniversalCharacterDetection.csproj -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/UniversalDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Fork/UniversalCharacterDetection/UniversalDetector.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/L4D2MM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/L4D2MM.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/L4D2Mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/L4D2Mod.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/L4D2ModManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/L4D2ModManager.csproj -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/L4D2Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/L4D2Resource.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/L4D2TxtReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/L4D2TxtReader.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/L4D2Type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/L4D2Type.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/LanguageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/LanguageHelper.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Logging.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/MainWindow.xaml -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Properties/Resources.resx -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Properties/Settings.settings -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Resources/Icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Resources/Icon/icon.png -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Resources/Icon/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Resources/Icon/icon.psd -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Resources/Icon/icon128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Resources/Icon/icon128.ico -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Resources/Langs/en-US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Resources/Langs/en-US.xaml -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/Resources/Langs/zh-CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/Resources/Langs/zh-CN.xaml -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/SteamAppId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/SteamAppId.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/SteamDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/SteamDelegate.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/StringAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/StringAdapter.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/ViewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/ViewItem.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WebHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WebHelper.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowCallbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowCallbacks.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowCategory.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowCategory.xaml -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowCategory.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowCategory.xaml.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowClassify.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowClassify.xaml -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowClassify.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowClassify.xaml.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowColors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowColors.xaml -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowColors.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowColors.xaml.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowLanguage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowLanguage.xaml -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowLanguage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowLanguage.xaml.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowSetValue.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowSetValue.xaml -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WindowSetValue.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WindowSetValue.xaml.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/WinformAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/WinformAdapter.cs -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/bin/Debug/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/bin/Debug/steam_api.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/bin/Debug/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/bin/Debug/steam_api64.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/bin/Debug/uchardet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/bin/Debug/uchardet.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/bin/Release/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/bin/Release/steam_api.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/bin/Release/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/bin/Release/steam_api64.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/bin/Release/uchardet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/bin/Release/uchardet.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/icon128.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/icon128.ico -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/packages.config -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/steam_api.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/steam_api64.dll -------------------------------------------------------------------------------- /SourceCode/L4D2ModManager/uchardet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/L4D2ModManager/uchardet.dll -------------------------------------------------------------------------------- /SourceCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/README.md -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamapplist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamapplist.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamapps.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamappticket.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamclient.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamcontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamcontroller.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamfriends.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamgamecoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamgamecoordinator.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamgameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamgameserver.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamgameserverstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamgameserverstats.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamhtmlsurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamhtmlsurface.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamhttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamhttp.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteaminventory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteaminventory.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteammasterserverupdater.h: -------------------------------------------------------------------------------- 1 | #error "This file isn't used any more" 2 | -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteammatchmaking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteammatchmaking.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteammusic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteammusic.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteammusicremote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteammusicremote.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamnetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamnetworking.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamparentalsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamparentalsettings.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamps3overlayrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamps3overlayrenderer.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamremotestorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamremotestorage.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamscreenshots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamscreenshots.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamugc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamugc.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamuser.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamuserstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamuserstats.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamutils.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/isteamvideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/isteamvideo.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/lib/linux32/libsdkencryptedappticket.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/lib/linux32/libsdkencryptedappticket.so -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/lib/linux64/libsdkencryptedappticket.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/lib/linux64/libsdkencryptedappticket.so -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/lib/osx32/libsdkencryptedappticket.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/lib/osx32/libsdkencryptedappticket.dylib -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/lib/win32/sdkencryptedappticket.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/lib/win32/sdkencryptedappticket.dll -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/lib/win32/sdkencryptedappticket.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/lib/win32/sdkencryptedappticket.lib -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/lib/win64/sdkencryptedappticket64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/lib/win64/sdkencryptedappticket64.dll -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/lib/win64/sdkencryptedappticket64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/lib/win64/sdkencryptedappticket64.lib -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/matchmakingtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/matchmakingtypes.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steam_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steam_api.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steam_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steam_api.json -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steam_api_flat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steam_api_flat.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steam_api_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steam_api_internal.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steam_api_interop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steam_api_interop.cs -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steam_gameserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steam_gameserver.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steamclientpublic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steamclientpublic.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steamencryptedappticket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steamencryptedappticket.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steamhttpenums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steamhttpenums.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steamps3params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steamps3params.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steamtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steamtypes.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/public/steam/steamuniverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/public/steam/steamuniverse.h -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/redistributable_bin/linux32/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/redistributable_bin/linux32/libsteam_api.so -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/redistributable_bin/linux64/libsteam_api.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/redistributable_bin/linux64/libsteam_api.so -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/redistributable_bin/osx32/libsteam_api.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/redistributable_bin/osx32/libsteam_api.dylib -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/redistributable_bin/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/redistributable_bin/steam_api.dll -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/redistributable_bin/steam_api.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/redistributable_bin/steam_api.lib -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/redistributable_bin/win64/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/redistributable_bin/win64/steam_api64.dll -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/redistributable_bin/win64/steam_api64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/redistributable_bin/win64/steam_api64.lib -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/steamworksexample/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/steamworksexample/Main.cpp -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/steamworksexample/SteamworksExample.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/steamworksexample/SteamworksExample.sh -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/steamworksexample/SteamworksExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/steamworksexample/SteamworksExample.sln -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/steamworksexample/SteamworksExample.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/steamworksexample/SteamworksExample.vcproj -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/steamworksexample/SteamworksExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/steamworksexample/SteamworksExample.vcxproj -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/steamworksexample/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/steamworksexample/stdafx.cpp -------------------------------------------------------------------------------- /SourceCode/SteamDelegate/steamworksexample/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xavier-cai/L4D2ModManager/HEAD/SourceCode/SteamDelegate/steamworksexample/stdafx.h --------------------------------------------------------------------------------