├── .gitattributes ├── .gitignore ├── DllExport.bat ├── DllExport_Configure.bat ├── LICENSE ├── Lib └── Newtonsoft.Json.dll ├── Native.Core ├── CQMain.cs ├── Domain │ └── AppData.cs ├── Export │ ├── CQEventExport.cs │ ├── CQExport.tt │ ├── CQMenuExport.cs │ └── CQStatusExport.cs ├── FodyWeavers.xml ├── Native.Core.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.json └── packages.config ├── Native.Sdk ├── Cqp │ ├── CQApi.cs │ ├── CQLog.cs │ ├── Core │ │ ├── CQP.cs │ │ └── Kernel32.cs │ ├── Enum │ │ ├── CQAudioFormat.cs │ │ ├── CQDiscussMessageType.cs │ │ ├── CQFace.cs │ │ ├── CQFloatWindowColors.cs │ │ ├── CQFriendAddRequestType.cs │ │ ├── CQFriendAddType.cs │ │ ├── CQFunction.cs │ │ ├── CQGroupAddRequestType.cs │ │ ├── CQGroupBanSpeakType.cs │ │ ├── CQGroupFileUploadType.cs │ │ ├── CQGroupManageChangeType.cs │ │ ├── CQGroupMemberDecreaseType.cs │ │ ├── CQGroupMemberIncreaseType.cs │ │ ├── CQGroupMessageType.cs │ │ ├── CQLogLevel.cs │ │ ├── CQMessageEventType.cs │ │ ├── CQMessageHandler.cs │ │ ├── CQMusicStyle.cs │ │ ├── CQMusicType.cs │ │ ├── CQPrviateMessageType.cs │ │ ├── CQResponseType.cs │ │ ├── QQGroupMemberType.cs │ │ └── QQSex.cs │ ├── EventArgs │ │ ├── CQAppDisableEventArgs.cs │ │ ├── CQAppEnableEventArgs.cs │ │ ├── CQDiscussMessageEventArgs.cs │ │ ├── CQEventArgs.cs │ │ ├── CQEventEventArgs.cs │ │ ├── CQExitEventArgs.cs │ │ ├── CQFriendAddEventArgs.cs │ │ ├── CQFriendAddRequestEventArgs.cs │ │ ├── CQGroupAddRequestEventArgs.cs │ │ ├── CQGroupBanSpeakEventArgs.cs │ │ ├── CQGroupManageChangeEventArgs.cs │ │ ├── CQGroupMemberDecreaseEventArgs.cs │ │ ├── CQGroupMemberIncreaseEventArgs.cs │ │ ├── CQGroupMessageEventArgs.cs │ │ ├── CQGroupUploadEventArgs.cs │ │ ├── CQMenuCallEventArgs.cs │ │ ├── CQMenuEventArgs.cs │ │ ├── CQPrivateMessageEventArgs.cs │ │ ├── CQStartupEventArgs.cs │ │ ├── CQStatusEventArgs.cs │ │ └── CQStatusUpdateEventArgs.cs │ ├── Expand │ │ ├── BinaryReaderExpand.cs │ │ ├── BinaryWriterExpand.cs │ │ └── SystemExpand.cs │ ├── Interface │ │ ├── IAppDisable.cs │ │ ├── IAppEnable.cs │ │ ├── ICQExit.cs │ │ ├── ICQStartup.cs │ │ ├── IDiscussMessage.cs │ │ ├── IFriendAdd.cs │ │ ├── IFriendAddRequest.cs │ │ ├── IGroupAddRequest.cs │ │ ├── IGroupBanSpeak.cs │ │ ├── IGroupManageChange.cs │ │ ├── IGroupMemberDecrease.cs │ │ ├── IGroupMemberIncrease.cs │ │ ├── IGroupMessage.cs │ │ ├── IGroupUpload.cs │ │ ├── IMenuCall.cs │ │ ├── IPrivateMessage.cs │ │ ├── IStatusUpdate.cs │ │ └── IToSendString.cs │ └── Model │ │ ├── AppInfo.cs │ │ ├── BasisModel.cs │ │ ├── BasisStreamModel.cs │ │ ├── CQCode.cs │ │ ├── CQFloatWindow.cs │ │ ├── Discuss.cs │ │ ├── FriendInfo.cs │ │ ├── FriendInfoCollection.cs │ │ ├── Group.cs │ │ ├── GroupFileInfo.cs │ │ ├── GroupInfo.cs │ │ ├── GroupInfoCollection.cs │ │ ├── GroupMemberAnonymousInfo.cs │ │ ├── GroupMemberInfo.cs │ │ ├── GroupMemberInfoCollection.cs │ │ ├── QQ.cs │ │ ├── QQMessage.cs │ │ ├── QQRequest.cs │ │ └── StrangerInfo.cs ├── Native.Sdk.csproj └── Properties │ └── AssemblyInfo.cs ├── Native.Tool ├── Http │ ├── HttpTool.cs │ └── HttpWebClient.cs ├── IniConfig │ ├── Attribute │ │ ├── IniConfigKeyAttribute.cs │ │ ├── IniConfigSectionAttribute.cs │ │ ├── IniKeyAttribute.cs │ │ ├── IniNonSerializeAttribute.cs │ │ ├── IniSectionAttribute.cs │ │ └── IniSerializeAttribute.cs │ ├── Exception │ │ ├── IniConfigException.cs │ │ ├── PropertyNotFoundException.cs │ │ └── SectionNotFoundException.cs │ ├── IniConfig.cs │ ├── IniConvert.cs │ ├── Linq │ │ ├── IContainer.cs │ │ ├── IObject.cs │ │ ├── ISection.cs │ │ ├── IValue.cs │ │ ├── IValueType.cs │ │ ├── IniObject.cs │ │ ├── IniSection.cs │ │ └── IniValue.cs │ ├── README.md │ └── Utilities │ │ ├── ConvertUtils.cs │ │ ├── MathUtils.cs │ │ ├── MiscellaneousUtils.cs │ │ └── ReflectionUtils.cs ├── Native.Tool.csproj ├── Properties │ └── AssemblyInfo.cs └── SQLite │ ├── AssemblySourceIdAttribute.cs │ ├── AssemblySourceTimeStampAttribute.cs │ ├── Configurations │ └── System.Data.SQLite.dll.config │ ├── Generated │ └── SR.resources │ ├── ISQLiteNativeModule.cs │ ├── LINQ │ ├── SQLiteConnection_Linq.cs │ └── SQLiteFactory_Linq.cs │ ├── Resources │ ├── DataTypes.xml │ ├── MetaDataCollections.xml │ ├── SQLiteCommand.bmp │ ├── SQLiteConnection.bmp │ ├── SQLiteDataAdapter.bmp │ ├── SR.Designer.cs │ └── SR.resx │ ├── SQLite3.cs │ ├── SQLite3_UTF16.cs │ ├── SQLiteBackup.cs │ ├── SQLiteBase.cs │ ├── SQLiteBlob.cs │ ├── SQLiteCommand.cs │ ├── SQLiteCommandBuilder.cs │ ├── SQLiteConnection.cs │ ├── SQLiteConnectionPool.cs │ ├── SQLiteConnectionStringBuilder.cs │ ├── SQLiteConvert.cs │ ├── SQLiteDataAdapter.cs │ ├── SQLiteDataReader.cs │ ├── SQLiteDefineConstants.cs │ ├── SQLiteEnlistment.cs │ ├── SQLiteException.cs │ ├── SQLiteFactory.cs │ ├── SQLiteFunction.cs │ ├── SQLiteFunctionAttribute.cs │ ├── SQLiteKeyReader.cs │ ├── SQLiteLog.cs │ ├── SQLiteMetaDataCollectionNames.cs │ ├── SQLiteModule.cs │ ├── SQLiteModuleCommon.cs │ ├── SQLiteModuleEnumerable.cs │ ├── SQLiteModuleNoop.cs │ ├── SQLiteParameter.cs │ ├── SQLiteParameterCollection.cs │ ├── SQLitePatchLevel.cs │ ├── SQLiteSession.cs │ ├── SQLiteStatement.cs │ ├── SQLiteTransaction.cs │ ├── SQLiteTransaction2.cs │ ├── SQLiteTransactionBase.cs │ ├── Targets │ ├── System.Data.SQLite.Files.targets │ ├── System.Data.SQLite.Properties.targets │ └── System.Data.SQLite.References.targets │ └── UnsafeNativeMethods.cs ├── Native.sln ├── New.json ├── README.md ├── SDK_LICENSE ├── SDK_README.md ├── SDK_UPDATE.md ├── UPDATE.md ├── me.cqp.luohuaming.Gacha.WPFUI ├── App.config ├── App.xaml ├── App.xaml.cs ├── CustomPoolGUI.xaml ├── CustomPoolGUI.xaml.cs ├── Form_Call.cs ├── Helper │ └── Helper.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TextBoxWithImg.xaml ├── TextBoxWithImg.xaml.cs ├── Translation.cs ├── me.cqp.luohuaming.Gacha.WPFUI.csproj └── packages.config ├── me.luohuaming.Gacha.Code ├── ChangePool.cs ├── CustomPool │ ├── CustomGachaHelper.cs │ ├── CustomPool.cs │ ├── CustomPoolGacha.cs │ ├── Generatejson.cs │ └── PicHelper.cs ├── Event_GroupMessage.cs ├── Event_PrivateMessage.cs ├── Event_StartUp.cs ├── GetDragon.cs ├── PaChonger.cs ├── Properties │ └── AssemblyInfo.cs ├── Rank │ ├── DiamondInteraction.cs │ ├── SqliteHelper.cs │ ├── TotalRank.cs │ └── WeekRank.cs ├── me.cqp.luohuaming.Gacha.Code.csproj └── packages.config ├── me.luohuaming.Gacha.UI ├── Aboutme.Designer.cs ├── Aboutme.cs ├── Aboutme.resx ├── AbyssHelper.Designer.cs ├── AbyssHelper.cs ├── AbyssHelper.resx ├── AbyssHelper │ ├── AbyssTimer.cs │ └── AbyssTimerHelper.cs ├── AnswerDIY.Designer.cs ├── AnswerDIY.cs ├── AnswerDIY.resx ├── App.config ├── CQSave.cs ├── CombinePng.cs ├── Event_MenuCall.cs ├── ExtraConfig.Designer.cs ├── ExtraConfig.cs ├── ExtraConfig.resx ├── Gacha.cs ├── GetUpdate.cs ├── INIhelper.cs ├── ImportGroupList.Designer.cs ├── ImportGroupList.cs ├── ImportGroupList.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ └── AbyssTimer.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── 4ccc0496818ee481.jpg │ ├── demo11.jpg │ └── demo21.jpg ├── Sponsor.Designer.cs ├── Sponsor.cs ├── Sponsor.resx ├── me.cqp.luohuaming.Gacha.UI.csproj ├── packages.config ├── 抽卡.Designer.cs ├── 抽卡.cs └── 抽卡.resx └── packages ├── Costura.Fody.1.6.2 ├── .signature.p7s ├── Costura.Fody.1.6.2.nupkg ├── Costura.Fody.dll ├── Costura.Tasks.dll ├── build │ ├── dotnet │ │ └── Costura.Fody.targets │ └── portable-net+sl+win+wpa+wp │ │ └── Costura.Fody.targets ├── lib │ ├── dotnet │ │ └── Costura.dll │ └── portable-net+sl+win+wpa+wp │ │ └── Costura.dll └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── DllExport.1.6.1 ├── 3rd-party.txt ├── DllExport.1.6.1.nupkg ├── DllExport.bat ├── License.txt ├── Readme.md ├── build │ └── net20 │ │ └── DllExport.targets ├── build_info.txt ├── changelog.txt ├── gcache │ └── metalib │ │ └── System.Runtime.InteropServices │ │ ├── DllExport.dll │ │ └── DllExport.dll.ddNSi ├── hMSBuild.bat ├── lib │ └── net20 │ │ └── _._ └── tools │ ├── Conari.dll │ ├── Conari.xml │ ├── Microsoft.Build.Framework.dll │ ├── Microsoft.Build.Utilities.v4.0.dll │ ├── Microsoft.Build.dll │ ├── Microsoft.Management.Infrastructure.dll │ ├── Mono.Cecil.dll │ ├── MvsSln.dll │ ├── MvsSln.xml │ ├── NSBin.dll │ ├── PeViewer.exe │ ├── RGiesecke.DllExport.MSBuild.dll │ ├── RGiesecke.DllExport.dll │ ├── System.Management.Automation.dll │ ├── build.targets │ ├── coreclr │ ├── LICENSE.TXT │ ├── PATENTS.TXT │ ├── README.md │ ├── _Version.txt │ ├── changelog.txt │ ├── coreclr.dll │ ├── ilasm.exe │ ├── ildasm.exe │ ├── ildasmrc.dll │ ├── mscordaccore.dll │ └── mscordbi.dll │ ├── gnt.bat │ ├── hMSBuild.bat │ ├── net.r_eg.DllExport.Configurator.dll │ ├── net.r_eg.DllExport.Wizard.dll │ ├── net.r_eg.DllExport.Wizard.targets │ ├── net.r_eg.DllExport.targets │ └── raw │ └── lib │ └── net20 │ └── DllExport.dll ├── Fody.2.2.1.0 ├── .signature.p7s ├── Content │ └── FodyWeavers.xml ├── Fody.2.2.1.0.nupkg ├── Fody.dll ├── FodyCommon.dll ├── FodyIsolated.dll ├── Mono.Cecil.Mdb.dll ├── Mono.Cecil.Pdb.dll ├── Mono.Cecil.Rocks.dll ├── Mono.Cecil.dll ├── Tools │ └── install.ps1 └── build │ ├── net452 │ └── Fody.targets │ ├── netstandard1.2 │ └── Fody.targets │ └── portable-net+sl+win+wpa+wp │ └── Fody.targets ├── HtmlAgilityPack.1.11.23 ├── .signature.p7s ├── HtmlAgilityPack.1.11.23.nupkg └── lib │ ├── Net35 │ ├── HtmlAgilityPack.dll │ └── HtmlAgilityPack.xml │ ├── Net40-client │ ├── HtmlAgilityPack.dll │ └── HtmlAgilityPack.xml │ ├── Net40 │ ├── HtmlAgilityPack.XML │ └── HtmlAgilityPack.dll │ ├── Net45 │ ├── HtmlAgilityPack.XML │ └── HtmlAgilityPack.dll │ ├── NetCore45 │ ├── HtmlAgilityPack.XML │ └── HtmlAgilityPack.dll │ ├── netstandard1.3 │ ├── HtmlAgilityPack.deps.json │ ├── HtmlAgilityPack.dll │ └── HtmlAgilityPack.xml │ ├── netstandard1.6 │ ├── HtmlAgilityPack.deps.json │ ├── HtmlAgilityPack.dll │ └── HtmlAgilityPack.xml │ ├── netstandard2.0 │ ├── HtmlAgilityPack.deps.json │ ├── HtmlAgilityPack.dll │ └── HtmlAgilityPack.xml │ ├── portable-net45+netcore45+wp8+MonoAndroid+MonoTouch │ ├── HtmlAgilityPack.XML │ └── HtmlAgilityPack.dll │ ├── portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch │ ├── HtmlAgilityPack.XML │ └── HtmlAgilityPack.dll │ └── uap10.0 │ ├── HtmlAgilityPack.XML │ ├── HtmlAgilityPack.dll │ └── HtmlAgilityPack.pri ├── Newtonsoft.Json.12.0.3 ├── .signature.p7s ├── LICENSE.md ├── Newtonsoft.Json.12.0.3.nupkg ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── packageIcon.png ├── Quartz.3.0.7 ├── .signature.p7s ├── Quartz.3.0.7.nupkg └── lib │ ├── net452 │ ├── Quartz.dll │ └── Quartz.xml │ └── netstandard2.0 │ ├── Quartz.dll │ └── Quartz.xml └── Unity.5.8.6 ├── .signature.p7s ├── Unity.5.8.6.nupkg └── lib ├── net40 ├── CommonServiceLocator.dll ├── Unity.Abstractions.dll ├── Unity.Container.dll ├── Unity.Interception.dll └── Unity.ServiceLocation.dll ├── net45 ├── CommonServiceLocator.dll ├── Unity.Abstractions.dll ├── Unity.Configuration.dll ├── Unity.Container.dll ├── Unity.Interception.Configuration.dll ├── Unity.Interception.dll ├── Unity.RegistrationByConvention.dll └── Unity.ServiceLocation.dll ├── net46 ├── CommonServiceLocator.dll ├── Unity.Abstractions.dll ├── Unity.Configuration.dll ├── Unity.Container.dll ├── Unity.Interception.Configuration.dll ├── Unity.Interception.dll ├── Unity.RegistrationByConvention.dll └── Unity.ServiceLocation.dll ├── net47 ├── CommonServiceLocator.dll ├── Unity.Abstractions.dll ├── Unity.Configuration.dll ├── Unity.Container.dll ├── Unity.Interception.Configuration.dll ├── Unity.Interception.dll ├── Unity.RegistrationByConvention.dll └── Unity.ServiceLocation.dll ├── netcoreapp1.0 ├── CommonServiceLocator.deps.json ├── CommonServiceLocator.dll ├── Unity.Abstractions.deps.json ├── Unity.Abstractions.dll ├── Unity.Container.deps.json ├── Unity.Container.dll ├── Unity.ServiceLocation.deps.json └── Unity.ServiceLocation.dll ├── netcoreapp2.0 ├── Unity.Abstractions.dll ├── Unity.Container.deps.json └── Unity.Container.dll ├── netstandard1.0 ├── CommonServiceLocator.deps.json ├── CommonServiceLocator.dll ├── Unity.Abstractions.deps.json ├── Unity.Abstractions.dll ├── Unity.Container.deps.json ├── Unity.Container.dll ├── Unity.ServiceLocation.deps.json └── Unity.ServiceLocation.dll └── netstandard2.0 ├── CommonServiceLocator.deps.json ├── CommonServiceLocator.dll ├── Unity.Abstractions.deps.json ├── Unity.Abstractions.dll ├── Unity.Container.deps.json ├── Unity.Container.dll ├── Unity.ServiceLocation.deps.json └── Unity.ServiceLocation.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/.gitignore -------------------------------------------------------------------------------- /DllExport.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/DllExport.bat -------------------------------------------------------------------------------- /DllExport_Configure.bat: -------------------------------------------------------------------------------- 1 | DllExport -action Configure %* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Native.Core/CQMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/CQMain.cs -------------------------------------------------------------------------------- /Native.Core/Domain/AppData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/Domain/AppData.cs -------------------------------------------------------------------------------- /Native.Core/Export/CQEventExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/Export/CQEventExport.cs -------------------------------------------------------------------------------- /Native.Core/Export/CQExport.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/Export/CQExport.tt -------------------------------------------------------------------------------- /Native.Core/Export/CQMenuExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/Export/CQMenuExport.cs -------------------------------------------------------------------------------- /Native.Core/Export/CQStatusExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/Export/CQStatusExport.cs -------------------------------------------------------------------------------- /Native.Core/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/FodyWeavers.xml -------------------------------------------------------------------------------- /Native.Core/Native.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/Native.Core.csproj -------------------------------------------------------------------------------- /Native.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Native.Core/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/app.json -------------------------------------------------------------------------------- /Native.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Core/packages.config -------------------------------------------------------------------------------- /Native.Sdk/Cqp/CQApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/CQApi.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/CQLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/CQLog.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Core/CQP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Core/CQP.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Core/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Core/Kernel32.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQAudioFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQAudioFormat.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQDiscussMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQDiscussMessageType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQFace.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFloatWindowColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQFloatWindowColors.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFriendAddRequestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQFriendAddRequestType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFriendAddType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQFriendAddType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQFunction.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupAddRequestType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQGroupAddRequestType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupBanSpeakType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQGroupBanSpeakType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupFileUploadType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQGroupFileUploadType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupManageChangeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQGroupManageChangeType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupMemberDecreaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQGroupMemberDecreaseType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupMemberIncreaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQGroupMemberIncreaseType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQGroupMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQGroupMessageType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQLogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQLogLevel.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQMessageEventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQMessageEventType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQMessageHandler.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQMusicStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQMusicStyle.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQMusicType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQMusicType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQPrviateMessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQPrviateMessageType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/CQResponseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/CQResponseType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/QQGroupMemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/QQGroupMemberType.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Enum/QQSex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Enum/QQSex.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQAppDisableEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQAppDisableEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQAppEnableEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQAppEnableEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQDiscussMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQDiscussMessageEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQEventEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQEventEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQExitEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQExitEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQFriendAddEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQFriendAddEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQFriendAddRequestEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQFriendAddRequestEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupAddRequestEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupAddRequestEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupBanSpeakEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupBanSpeakEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupManageChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupManageChangeEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupMemberDecreaseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupMemberDecreaseEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupMemberIncreaseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupMemberIncreaseEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupMessageEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQGroupUploadEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQGroupUploadEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQMenuCallEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQMenuCallEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQMenuEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQMenuEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQPrivateMessageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQPrivateMessageEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQStartupEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQStartupEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQStatusEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQStatusEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/EventArgs/CQStatusUpdateEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/EventArgs/CQStatusUpdateEventArgs.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Expand/BinaryReaderExpand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Expand/BinaryReaderExpand.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Expand/BinaryWriterExpand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Expand/BinaryWriterExpand.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Expand/SystemExpand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Expand/SystemExpand.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IAppDisable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IAppDisable.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IAppEnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IAppEnable.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/ICQExit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/ICQExit.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/ICQStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/ICQStartup.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IDiscussMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IDiscussMessage.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IFriendAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IFriendAdd.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IFriendAddRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IFriendAddRequest.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupAddRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IGroupAddRequest.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupBanSpeak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IGroupBanSpeak.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupManageChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IGroupManageChange.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupMemberDecrease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IGroupMemberDecrease.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupMemberIncrease.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IGroupMemberIncrease.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IGroupMessage.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IGroupUpload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IGroupUpload.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IMenuCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IMenuCall.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IPrivateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IPrivateMessage.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IStatusUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IStatusUpdate.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Interface/IToSendString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Interface/IToSendString.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/AppInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/BasisModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/BasisModel.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/BasisStreamModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/BasisStreamModel.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/CQCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/CQCode.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/CQFloatWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/CQFloatWindow.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/Discuss.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/Discuss.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/FriendInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/FriendInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/FriendInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/FriendInfoCollection.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/Group.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/GroupFileInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/GroupInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/GroupInfoCollection.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupMemberAnonymousInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/GroupMemberAnonymousInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupMemberInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/GroupMemberInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/GroupMemberInfoCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/GroupMemberInfoCollection.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/QQ.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/QQ.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/QQMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/QQMessage.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/QQRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/QQRequest.cs -------------------------------------------------------------------------------- /Native.Sdk/Cqp/Model/StrangerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Cqp/Model/StrangerInfo.cs -------------------------------------------------------------------------------- /Native.Sdk/Native.Sdk.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Native.Sdk.csproj -------------------------------------------------------------------------------- /Native.Sdk/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Sdk/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Native.Tool/Http/HttpTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/Http/HttpTool.cs -------------------------------------------------------------------------------- /Native.Tool/Http/HttpWebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/Http/HttpWebClient.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniConfigKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Attribute/IniConfigKeyAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniConfigSectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Attribute/IniConfigSectionAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniKeyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Attribute/IniKeyAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniNonSerializeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Attribute/IniNonSerializeAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniSectionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Attribute/IniSectionAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Attribute/IniSerializeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Attribute/IniSerializeAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Exception/IniConfigException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Exception/IniConfigException.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Exception/PropertyNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Exception/PropertyNotFoundException.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Exception/SectionNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Exception/SectionNotFoundException.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/IniConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/IniConfig.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/IniConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/IniConvert.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Linq/IContainer.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Linq/IObject.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/ISection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Linq/ISection.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Linq/IValue.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Linq/IValueType.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IniObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Linq/IniObject.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IniSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Linq/IniSection.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Linq/IniValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Linq/IniValue.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/README.md -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Utilities/ConvertUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Utilities/ConvertUtils.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Utilities/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Utilities/MathUtils.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Utilities/MiscellaneousUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Utilities/MiscellaneousUtils.cs -------------------------------------------------------------------------------- /Native.Tool/IniConfig/Utilities/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/IniConfig/Utilities/ReflectionUtils.cs -------------------------------------------------------------------------------- /Native.Tool/Native.Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/Native.Tool.csproj -------------------------------------------------------------------------------- /Native.Tool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/AssemblySourceIdAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/AssemblySourceIdAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/AssemblySourceTimeStampAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/AssemblySourceTimeStampAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/Configurations/System.Data.SQLite.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Configurations/System.Data.SQLite.dll.config -------------------------------------------------------------------------------- /Native.Tool/SQLite/Generated/SR.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Generated/SR.resources -------------------------------------------------------------------------------- /Native.Tool/SQLite/ISQLiteNativeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/ISQLiteNativeModule.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/LINQ/SQLiteConnection_Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/LINQ/SQLiteConnection_Linq.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/LINQ/SQLiteFactory_Linq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/LINQ/SQLiteFactory_Linq.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/DataTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Resources/DataTypes.xml -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/MetaDataCollections.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Resources/MetaDataCollections.xml -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SQLiteCommand.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Resources/SQLiteCommand.bmp -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SQLiteConnection.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Resources/SQLiteConnection.bmp -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SQLiteDataAdapter.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Resources/SQLiteDataAdapter.bmp -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SR.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Resources/SR.Designer.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/Resources/SR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Resources/SR.resx -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLite3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLite3.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLite3_UTF16.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLite3_UTF16.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteBackup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteBackup.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteBase.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteBlob.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteCommand.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteCommandBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteCommandBuilder.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteConnection.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteConnectionPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteConnectionPool.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteConnectionStringBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteConnectionStringBuilder.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteConvert.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteDataAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteDataAdapter.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteDataReader.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteDefineConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteDefineConstants.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteEnlistment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteEnlistment.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteException.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteFactory.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteFunction.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteFunctionAttribute.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteKeyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteKeyReader.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteLog.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteMetaDataCollectionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteMetaDataCollectionNames.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteModule.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteModuleCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteModuleCommon.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteModuleEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteModuleEnumerable.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteModuleNoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteModuleNoop.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteParameter.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteParameterCollection.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLitePatchLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLitePatchLevel.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteSession.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteStatement.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteTransaction.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteTransaction2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteTransaction2.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/SQLiteTransactionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/SQLiteTransactionBase.cs -------------------------------------------------------------------------------- /Native.Tool/SQLite/Targets/System.Data.SQLite.Files.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Targets/System.Data.SQLite.Files.targets -------------------------------------------------------------------------------- /Native.Tool/SQLite/Targets/System.Data.SQLite.Properties.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Targets/System.Data.SQLite.Properties.targets -------------------------------------------------------------------------------- /Native.Tool/SQLite/Targets/System.Data.SQLite.References.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/Targets/System.Data.SQLite.References.targets -------------------------------------------------------------------------------- /Native.Tool/SQLite/UnsafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.Tool/SQLite/UnsafeNativeMethods.cs -------------------------------------------------------------------------------- /Native.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/Native.sln -------------------------------------------------------------------------------- /New.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/New.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/README.md -------------------------------------------------------------------------------- /SDK_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/SDK_LICENSE -------------------------------------------------------------------------------- /SDK_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/SDK_README.md -------------------------------------------------------------------------------- /SDK_UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/SDK_UPDATE.md -------------------------------------------------------------------------------- /UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/UPDATE.md -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/App.config -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/App.xaml -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/App.xaml.cs -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/CustomPoolGUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/CustomPoolGUI.xaml -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/CustomPoolGUI.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/CustomPoolGUI.xaml.cs -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/Form_Call.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/Form_Call.cs -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/Helper/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/Helper/Helper.cs -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/Properties/Resources.resx -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/Properties/Settings.settings -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/TextBoxWithImg.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/TextBoxWithImg.xaml -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/TextBoxWithImg.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/TextBoxWithImg.xaml.cs -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/Translation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/Translation.cs -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/me.cqp.luohuaming.Gacha.WPFUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/me.cqp.luohuaming.Gacha.WPFUI.csproj -------------------------------------------------------------------------------- /me.cqp.luohuaming.Gacha.WPFUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.cqp.luohuaming.Gacha.WPFUI/packages.config -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/ChangePool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/ChangePool.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/CustomPool/CustomGachaHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/CustomPool/CustomGachaHelper.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/CustomPool/CustomPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/CustomPool/CustomPool.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/CustomPool/CustomPoolGacha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/CustomPool/CustomPoolGacha.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/CustomPool/Generatejson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/CustomPool/Generatejson.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/CustomPool/PicHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/CustomPool/PicHelper.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/Event_GroupMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/Event_GroupMessage.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/Event_PrivateMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/Event_PrivateMessage.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/Event_StartUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/Event_StartUp.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/GetDragon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/GetDragon.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/PaChonger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/PaChonger.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/Rank/DiamondInteraction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/Rank/DiamondInteraction.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/Rank/SqliteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/Rank/SqliteHelper.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/Rank/TotalRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/Rank/TotalRank.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/Rank/WeekRank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/Rank/WeekRank.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/me.cqp.luohuaming.Gacha.Code.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/me.cqp.luohuaming.Gacha.Code.csproj -------------------------------------------------------------------------------- /me.luohuaming.Gacha.Code/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.Code/packages.config -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Aboutme.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Aboutme.Designer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Aboutme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Aboutme.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Aboutme.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Aboutme.resx -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/AbyssHelper.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/AbyssHelper.Designer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/AbyssHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/AbyssHelper.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/AbyssHelper.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/AbyssHelper.resx -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/AbyssHelper/AbyssTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/AbyssHelper/AbyssTimer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/AbyssHelper/AbyssTimerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/AbyssHelper/AbyssTimerHelper.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/AnswerDIY.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/AnswerDIY.Designer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/AnswerDIY.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/AnswerDIY.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/AnswerDIY.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/AnswerDIY.resx -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/App.config -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/CQSave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/CQSave.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/CombinePng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/CombinePng.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Event_MenuCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Event_MenuCall.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/ExtraConfig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/ExtraConfig.Designer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/ExtraConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/ExtraConfig.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/ExtraConfig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/ExtraConfig.resx -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Gacha.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Gacha.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/GetUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/GetUpdate.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/INIhelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/INIhelper.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/ImportGroupList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/ImportGroupList.Designer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/ImportGroupList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/ImportGroupList.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/ImportGroupList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/ImportGroupList.resx -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Program.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Properties/DataSources/AbyssTimer.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Properties/DataSources/AbyssTimer.datasource -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Properties/Resources.resx -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Properties/Settings.settings -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Resources/4ccc0496818ee481.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Resources/4ccc0496818ee481.jpg -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Resources/demo11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Resources/demo11.jpg -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Resources/demo21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Resources/demo21.jpg -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Sponsor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Sponsor.Designer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Sponsor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Sponsor.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/Sponsor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/Sponsor.resx -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/me.cqp.luohuaming.Gacha.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/me.cqp.luohuaming.Gacha.UI.csproj -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/packages.config -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/抽卡.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/抽卡.Designer.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/抽卡.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/抽卡.cs -------------------------------------------------------------------------------- /me.luohuaming.Gacha.UI/抽卡.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/me.luohuaming.Gacha.UI/抽卡.resx -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/.signature.p7s -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.1.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.1.6.2.nupkg -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/Costura.Fody.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/Costura.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/Costura.Tasks.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/build/dotnet/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/build/portable-net+sl+win+wpa+wp/Costura.Fody.targets -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/lib/dotnet/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/lib/portable-net+sl+win+wpa+wp/Costura.dll -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/tools/install.ps1 -------------------------------------------------------------------------------- /packages/Costura.Fody.1.6.2/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Costura.Fody.1.6.2/tools/uninstall.ps1 -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/3rd-party.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/3rd-party.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/DllExport.1.6.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/DllExport.1.6.1.nupkg -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/DllExport.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/DllExport.bat -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/License.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/Readme.md -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/build/net20/DllExport.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/build/net20/DllExport.targets -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/build_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/build_info.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/changelog.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/gcache/metalib/System.Runtime.InteropServices/DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/gcache/metalib/System.Runtime.InteropServices/DllExport.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/gcache/metalib/System.Runtime.InteropServices/DllExport.dll.ddNSi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/gcache/metalib/System.Runtime.InteropServices/DllExport.dll.ddNSi -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/hMSBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/hMSBuild.bat -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/lib/net20/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Conari.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/Conari.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Conari.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/Conari.xml -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Microsoft.Build.Framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/Microsoft.Build.Framework.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Microsoft.Build.Utilities.v4.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/Microsoft.Build.Utilities.v4.0.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Microsoft.Build.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/Microsoft.Build.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Microsoft.Management.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/Microsoft.Management.Infrastructure.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/MvsSln.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/MvsSln.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/MvsSln.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/MvsSln.xml -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/NSBin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/NSBin.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/PeViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/PeViewer.exe -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/RGiesecke.DllExport.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/RGiesecke.DllExport.MSBuild.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/RGiesecke.DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/RGiesecke.DllExport.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/System.Management.Automation.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/build.targets -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/LICENSE.TXT -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/PATENTS.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/PATENTS.TXT -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/README.md -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/_Version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/_Version.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/changelog.txt -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/coreclr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/coreclr.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/ilasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/ilasm.exe -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/ildasm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/ildasm.exe -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/ildasmrc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/ildasmrc.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/mscordaccore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/mscordaccore.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/coreclr/mscordbi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/coreclr/mscordbi.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/gnt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/gnt.bat -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/hMSBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/hMSBuild.bat -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Configurator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Configurator.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.dll -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.Wizard.targets -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/net.r_eg.DllExport.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/net.r_eg.DllExport.targets -------------------------------------------------------------------------------- /packages/DllExport.1.6.1/tools/raw/lib/net20/DllExport.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/DllExport.1.6.1/tools/raw/lib/net20/DllExport.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/.signature.p7s -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Content/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/Content/FodyWeavers.xml -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Fody.2.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/Fody.2.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Fody.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/Fody.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/FodyCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/FodyCommon.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/FodyIsolated.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/FodyIsolated.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Mono.Cecil.Mdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/Mono.Cecil.Mdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Mono.Cecil.Pdb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/Mono.Cecil.Pdb.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Mono.Cecil.Rocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/Mono.Cecil.Rocks.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Mono.Cecil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/Mono.Cecil.dll -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/Tools/install.ps1 -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/build/net452/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/build/net452/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/build/netstandard1.2/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/build/netstandard1.2/Fody.targets -------------------------------------------------------------------------------- /packages/Fody.2.2.1.0/build/portable-net+sl+win+wpa+wp/Fody.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Fody.2.2.1.0/build/portable-net+sl+win+wpa+wp/Fody.targets -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/.signature.p7s -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/HtmlAgilityPack.1.11.23.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/HtmlAgilityPack.1.11.23.nupkg -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/Net35/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/Net35/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/Net35/HtmlAgilityPack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/Net35/HtmlAgilityPack.xml -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/Net40-client/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/Net40-client/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/Net40-client/HtmlAgilityPack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/Net40-client/HtmlAgilityPack.xml -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/Net40/HtmlAgilityPack.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/Net40/HtmlAgilityPack.XML -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/Net40/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/Net40/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/Net45/HtmlAgilityPack.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/Net45/HtmlAgilityPack.XML -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/Net45/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/Net45/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/NetCore45/HtmlAgilityPack.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/NetCore45/HtmlAgilityPack.XML -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/NetCore45/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/NetCore45/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/netstandard1.3/HtmlAgilityPack.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/netstandard1.3/HtmlAgilityPack.deps.json -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/netstandard1.3/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/netstandard1.3/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/netstandard1.3/HtmlAgilityPack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/netstandard1.3/HtmlAgilityPack.xml -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/netstandard1.6/HtmlAgilityPack.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/netstandard1.6/HtmlAgilityPack.deps.json -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/netstandard1.6/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/netstandard1.6/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/netstandard1.6/HtmlAgilityPack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/netstandard1.6/HtmlAgilityPack.xml -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/netstandard2.0/HtmlAgilityPack.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/netstandard2.0/HtmlAgilityPack.deps.json -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/netstandard2.0/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/netstandard2.0/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/netstandard2.0/HtmlAgilityPack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/netstandard2.0/HtmlAgilityPack.xml -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/portable-net45+netcore45+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.XML -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/uap10.0/HtmlAgilityPack.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/uap10.0/HtmlAgilityPack.XML -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/uap10.0/HtmlAgilityPack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/uap10.0/HtmlAgilityPack.dll -------------------------------------------------------------------------------- /packages/HtmlAgilityPack.1.11.23/lib/uap10.0/HtmlAgilityPack.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/HtmlAgilityPack.1.11.23/lib/uap10.0/HtmlAgilityPack.pri -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /packages/Quartz.3.0.7/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Quartz.3.0.7/.signature.p7s -------------------------------------------------------------------------------- /packages/Quartz.3.0.7/Quartz.3.0.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Quartz.3.0.7/Quartz.3.0.7.nupkg -------------------------------------------------------------------------------- /packages/Quartz.3.0.7/lib/net452/Quartz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Quartz.3.0.7/lib/net452/Quartz.dll -------------------------------------------------------------------------------- /packages/Quartz.3.0.7/lib/net452/Quartz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Quartz.3.0.7/lib/net452/Quartz.xml -------------------------------------------------------------------------------- /packages/Quartz.3.0.7/lib/netstandard2.0/Quartz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Quartz.3.0.7/lib/netstandard2.0/Quartz.dll -------------------------------------------------------------------------------- /packages/Quartz.3.0.7/lib/netstandard2.0/Quartz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Quartz.3.0.7/lib/netstandard2.0/Quartz.xml -------------------------------------------------------------------------------- /packages/Unity.5.8.6/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/.signature.p7s -------------------------------------------------------------------------------- /packages/Unity.5.8.6/Unity.5.8.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/Unity.5.8.6.nupkg -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net40/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net40/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net40/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net40/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net40/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net40/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net45/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net45/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net45/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net45/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net45/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net46/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net46/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net46/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net46/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net46/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net47/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Interception.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Interception.Configuration.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.Interception.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net47/Unity.Interception.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.RegistrationByConvention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net47/Unity.RegistrationByConvention.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/net47/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/net47/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/CommonServiceLocator.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Abstractions.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Container.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.ServiceLocation.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp1.0/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Container.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netcoreapp2.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/CommonServiceLocator.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.Abstractions.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.Container.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.ServiceLocation.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard1.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard1.0/Unity.ServiceLocation.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/CommonServiceLocator.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/CommonServiceLocator.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/CommonServiceLocator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/CommonServiceLocator.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.Abstractions.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.Abstractions.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.Abstractions.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.Container.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.Container.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.Container.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.Container.dll -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.ServiceLocation.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.ServiceLocation.deps.json -------------------------------------------------------------------------------- /packages/Unity.5.8.6/lib/netstandard2.0/Unity.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hellobaka/BH3rdGachaSimulator/HEAD/packages/Unity.5.8.6/lib/netstandard2.0/Unity.ServiceLocation.dll --------------------------------------------------------------------------------