├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── builds.yml ├── .gitignore ├── .gitmodules ├── Extra ├── ParamPro │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Control │ │ ├── FractionalBox.cs │ │ ├── PRFNpcControl.xaml │ │ ├── PRFNpcControl.xaml.cs │ │ ├── PRFObjectControl.xaml │ │ ├── PRFObjectControl.xaml.cs │ │ ├── PRMMapControl.xaml │ │ ├── PRMMapControl.xaml.cs │ │ ├── SfxItemControl.xaml │ │ ├── SfxItemControl.xaml.cs │ │ ├── SndItemControl.xaml │ │ └── SndItemControl.xaml.cs │ ├── Format │ │ ├── EditorMapPRT.cs │ │ ├── EditorNpcPRF.cs │ │ ├── EditorObjPRF.cs │ │ ├── FX2DType.cs │ │ ├── NpcAnimations.cs │ │ ├── PrfSfxItem.cs │ │ └── PrfSndItem.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── ParamPro.csproj │ ├── Properties │ │ └── launchSettings.json │ └── Theme │ │ └── Dark.xaml ├── Sealed Sword Stone │ ├── App.xaml │ ├── App.xaml.cs │ ├── AssemblyInfo.cs │ ├── Controls │ │ ├── ControllerBinding.xaml │ │ ├── ControllerBinding.xaml.cs │ │ ├── ControllerTab.xaml │ │ ├── ControllerTab.xaml.cs │ │ ├── KeyboardMouseBinding.xaml │ │ ├── KeyboardMouseBinding.xaml.cs │ │ ├── KeyboardMouseTab.xaml │ │ └── KeyboardMouseTab.xaml.cs │ ├── Core │ │ ├── ControlBinding.cs │ │ └── ControllerState.cs │ ├── Injector.cs │ ├── LAUNCHER │ │ ├── 128-24-ExitButton.png │ │ ├── 128-24-PlayButton.png │ │ ├── 128-24-SettingsButton.png │ │ ├── 96-96-Unplug.png │ │ ├── 960-540-Background.png │ │ ├── click.wav │ │ ├── hover.wav │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── launcher_config.json │ │ └── the_hush.wav │ ├── LaunchConfig.cs │ ├── NativeMethods.txt │ ├── Sealed Sword Stone.csproj │ ├── Theme │ │ └── Dark.xaml │ ├── UserConfig.cs │ └── Windows │ │ ├── ConfigurationDialog.xaml │ │ ├── ConfigurationDialog.xaml.cs │ │ ├── ControlBindingDialog.xaml │ │ ├── ControlBindingDialog.xaml.cs │ │ ├── MainWindow.xaml │ │ └── MainWindow.xaml.cs └── Unsealer │ ├── .gitignore │ ├── Unsealer.vcxproj │ ├── Unsealer.vcxproj.filters │ ├── dllmain.cpp │ ├── readme.md │ ├── sdk │ └── inc │ │ ├── fkyaml │ │ ├── fkyaml_fwd.hpp │ │ └── node.hpp │ │ └── rapidyaml-0.9.0.hpp │ ├── unsealconf.cpp │ ├── unsealconf.h │ ├── unsealdata.cpp │ ├── unsealdata.h │ ├── unsealdraw.cpp │ ├── unsealdraw.h │ ├── unsealfilesystem.cpp │ ├── unsealfilesystem.h │ ├── unsealgdi.cpp │ ├── unsealgdi.h │ ├── unsealgold.cpp │ ├── unsealgold.h │ ├── unsealhash.cpp │ ├── unsealhash.h │ ├── unsealinput.cpp │ ├── unsealinput.h │ ├── unseallog.cpp │ ├── unseallog.h │ ├── unsealmath.cpp │ ├── unsealmath.h │ ├── unsealmemory.cpp │ ├── unsealmemory.h │ ├── unsealplayer.cpp │ ├── unsealplayer.h │ ├── unsealsound.cpp │ ├── unsealsound.h │ ├── unsealtime.cpp │ ├── unsealtime.h │ ├── unsealwindow.cpp │ └── unsealwindow.h ├── LICENSE ├── Lawful Blade Manager.sln ├── LawfulBlade ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Control │ ├── InstanceControl.xaml │ ├── InstanceControl.xaml.cs │ ├── PackageControl.xaml │ ├── PackageControl.xaml.cs │ ├── ProjectControl.xaml │ └── ProjectControl.xaml.cs ├── Core │ ├── Debug.cs │ ├── DownloadManager.cs │ ├── Extensions │ │ ├── ColorExtensions.cs │ │ ├── DirectoryInfoExtensions.cs │ │ ├── GuidExtensions.cs │ │ └── StringExtensions.cs │ ├── HashThis.cs │ ├── Instance │ │ ├── Instance.cs │ │ ├── InstanceCommand.cs │ │ ├── InstanceCreateArgs.cs │ │ ├── InstanceManager.cs │ │ ├── InstanceTemplate.cs │ │ └── InstanceVariable.cs │ ├── LargeAddressAware.cs │ ├── Message.cs │ ├── Package │ │ ├── Package.cs │ │ ├── PackageCreateArgs.cs │ │ ├── PackageFile.cs │ │ ├── PackageManager.cs │ │ ├── PackageReference.cs │ │ └── PackageTarget.cs │ ├── Preferences.cs │ ├── Project │ │ ├── Project.cs │ │ ├── ProjectCreateArgs.cs │ │ └── ProjectManager.cs │ ├── RegistryHelper.cs │ ├── Repository │ │ ├── Repository.cs │ │ ├── RepositoryCreateArgs.cs │ │ └── RepositoryPackage.cs │ ├── Runtime │ │ └── RuntimeManager.cs │ ├── UpdateInfo.cs │ └── Winblows.cs ├── Dialog │ ├── AboutDialog.xaml │ ├── AboutDialog.xaml.cs │ ├── BusyDialog.xaml │ ├── BusyDialog.xaml.cs │ ├── CreateInstanceDialog.xaml │ ├── CreateInstanceDialog.xaml.cs │ ├── CreateProjectDialog.xaml │ ├── CreateProjectDialog.xaml.cs │ ├── PackageManagerDialog.xaml │ ├── PackageManagerDialog.xaml.cs │ ├── PreferencesDialog.xaml │ ├── PreferencesDialog.xaml.cs │ ├── PublishProjectDialog.xaml │ └── PublishProjectDialog.xaml.cs ├── LawfulBlade.csproj ├── Properties │ └── launchSettings.json ├── Resource │ ├── 128x128_packagedefault.png │ ├── 256x256_instancedefault.png │ ├── 256x256_projectdefault.png │ ├── 48x48_delete.png │ ├── 48x48_execute.png │ ├── 48x48_explorer.png │ ├── 48x48_managePackages.png │ ├── 48x48_runtime.png │ ├── 48x48_shortcut.png │ ├── 576x128_lawfulbladeheader.png │ ├── 96x96_create.png │ ├── 96x96_import.png │ ├── moonlight.ico │ └── moonlight.png ├── Theme │ └── Dark.xaml └── Window │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs ├── LawfulBladeSDK ├── Extensions │ └── LawfulBladeStringExtensions.cs ├── Generator │ ├── GeneratorLoadArgs.cs │ ├── GeneratorProperty.cs │ ├── GeneratorStartArgs.cs │ └── IRuntimeGenerator.cs ├── IO │ ├── Endianness.cs │ ├── FileInputStream.Array.cs │ ├── FileInputStream.Compounds.cs │ ├── FileInputStream.IDisposableImpl.cs │ ├── FileInputStream.Primitives.cs │ ├── FileInputStream.Seeking.cs │ ├── FileInputStream.String.cs │ └── FileInputStream.cs └── LawfulBladeSDK.csproj ├── LawfulBladeUpdater ├── LawfulBladeUpdater.csproj └── Program.cs ├── LawfulRuntime ├── Assets │ ├── Animations │ │ ├── ANCTextFX.controller │ │ └── ANMTextPulse.anim │ ├── AssetBundles │ │ ├── AssetBundles │ │ ├── AssetBundles.manifest │ │ ├── trismegistus_test │ │ └── trismegistus_test.manifest │ ├── Font │ │ ├── msgothic SDF.asset │ │ └── msgothic.ttc │ ├── Material │ │ ├── MATSequenceFont.mat │ │ └── Shader │ │ │ ├── MATSpriteBlackIsAlpha.mat │ │ │ ├── SHDBlack2Alpha.shader │ │ │ ├── SHDModelResource.shader │ │ │ └── TEST.mat │ ├── Plugins │ │ ├── Demigiant │ │ │ └── DOTween │ │ │ │ ├── DOTween.XML │ │ │ │ ├── DOTween.dll │ │ │ │ ├── DOTween.dll.mdb │ │ │ │ ├── Editor │ │ │ │ ├── DOTweenEditor.XML │ │ │ │ ├── DOTweenEditor.dll │ │ │ │ ├── DOTweenEditor.dll.mdb │ │ │ │ └── Imgs │ │ │ │ │ ├── DOTweenIcon.png │ │ │ │ │ ├── DOTweenMiniIcon.png │ │ │ │ │ ├── Footer.png │ │ │ │ │ ├── Footer_dark.png │ │ │ │ │ └── Header.jpg │ │ │ │ ├── Modules │ │ │ │ ├── DOTweenModuleAudio.cs │ │ │ │ ├── DOTweenModuleEPOOutline.cs │ │ │ │ ├── DOTweenModulePhysics.cs │ │ │ │ ├── DOTweenModulePhysics2D.cs │ │ │ │ ├── DOTweenModuleSprite.cs │ │ │ │ ├── DOTweenModuleUI.cs │ │ │ │ ├── DOTweenModuleUnityVersion.cs │ │ │ │ └── DOTweenModuleUtils.cs │ │ │ │ └── readme.txt │ │ ├── Lawful │ │ │ ├── IO │ │ │ │ ├── Endianness.cs │ │ │ │ ├── FileInputStream.Array.cs │ │ │ │ ├── FileInputStream.Compounds.cs │ │ │ │ ├── FileInputStream.IDisposableImpl.cs │ │ │ │ ├── FileInputStream.Primitives.cs │ │ │ │ ├── FileInputStream.Seeking.cs │ │ │ │ ├── FileInputStream.String.cs │ │ │ │ └── FileInputStream.cs │ │ │ ├── Resource │ │ │ │ ├── AudioResource.cs │ │ │ │ ├── BaseResource.cs │ │ │ │ ├── Factory │ │ │ │ │ ├── AudioFactory.cs │ │ │ │ │ ├── FontFactory.cs │ │ │ │ │ ├── ModelFactory.cs │ │ │ │ │ ├── ResourceFactory.cs │ │ │ │ │ └── TextureFactory.cs │ │ │ │ ├── FileFormat │ │ │ │ │ ├── BMP │ │ │ │ │ │ └── BMPFormatHandler.cs │ │ │ │ │ ├── FileFormatCapabilities.cs │ │ │ │ │ ├── FileFormatFilter.cs │ │ │ │ │ ├── FileFormatHandler.cs │ │ │ │ │ ├── FileFormatMetadata.cs │ │ │ │ │ ├── MDO │ │ │ │ │ │ └── MDOFormatHandler.cs │ │ │ │ │ ├── SND │ │ │ │ │ │ └── SNDFormatHandler.cs │ │ │ │ │ ├── TXR │ │ │ │ │ │ └── TXRFormatHandler.cs │ │ │ │ │ └── WAV │ │ │ │ │ │ └── WAVFormatHandler.cs │ │ │ │ ├── FontResource.cs │ │ │ │ ├── Lawful.lnk │ │ │ │ ├── ModelResource.cs │ │ │ │ ├── ResourceManager.cs │ │ │ │ ├── ResourceOverride.cs │ │ │ │ ├── ResourceSource.cs │ │ │ │ ├── ResourceState.cs │ │ │ │ └── TextureResource.cs │ │ │ └── Utility │ │ │ │ └── HashThis.cs │ │ └── MoonSharp │ │ │ ├── Interpreter │ │ │ ├── AsyncExtensions.cs │ │ │ ├── Compatibility │ │ │ │ ├── Attributes.cs │ │ │ │ ├── Framework.cs │ │ │ │ ├── Frameworks │ │ │ │ │ ├── Base │ │ │ │ │ │ ├── FrameworkBase.cs │ │ │ │ │ │ ├── FrameworkClrBase.cs │ │ │ │ │ │ └── FrameworkReflectionBase.cs │ │ │ │ │ ├── FrameworkCLR.cs │ │ │ │ │ ├── FrameworkCore.cs │ │ │ │ │ ├── FrameworkPCL.cs │ │ │ │ │ └── FrameworkWin8.cs │ │ │ │ └── Stopwatch.cs │ │ │ ├── CoreLib │ │ │ │ ├── BasicModule.cs │ │ │ │ ├── Bit32Module.cs │ │ │ │ ├── CoroutineModule.cs │ │ │ │ ├── DebugModule.cs │ │ │ │ ├── DynamicModule.cs │ │ │ │ ├── ErrorHandlingModule.cs │ │ │ │ ├── IO │ │ │ │ │ ├── BinaryEncoding.cs │ │ │ │ │ ├── FileUserData.cs │ │ │ │ │ ├── FileUserDataBase.cs │ │ │ │ │ ├── StandardIOFileUserDataBase.cs │ │ │ │ │ └── StreamFileUserDataBase.cs │ │ │ │ ├── IoModule.cs │ │ │ │ ├── JsonModule.cs │ │ │ │ ├── LoadModule.cs │ │ │ │ ├── MathModule.cs │ │ │ │ ├── MetaTableModule.cs │ │ │ │ ├── OsSystemModule.cs │ │ │ │ ├── OsTimeModule.cs │ │ │ │ ├── StringLib │ │ │ │ │ ├── KopiLua_StrLib.cs │ │ │ │ │ └── StringRange.cs │ │ │ │ ├── StringModule.cs │ │ │ │ ├── TableIteratorsModule.cs │ │ │ │ └── TableModule.cs │ │ │ ├── DataStructs │ │ │ │ ├── Extension_Methods.cs │ │ │ │ ├── FastStack.cs │ │ │ │ ├── FastStackDynamic.cs │ │ │ │ ├── LinkedListIndex.cs │ │ │ │ ├── MultiDictionary.cs │ │ │ │ ├── ReferenceEqualityComparer.cs │ │ │ │ └── Slice.cs │ │ │ ├── DataTypes │ │ │ │ ├── CallbackArguments.cs │ │ │ │ ├── CallbackFunction.cs │ │ │ │ ├── Closure.cs │ │ │ │ ├── Coroutine.cs │ │ │ │ ├── CoroutineState.cs │ │ │ │ ├── DataType.cs │ │ │ │ ├── DynValue.cs │ │ │ │ ├── DynValueAccessor.cs │ │ │ │ ├── IScriptPrivateResource.cs │ │ │ │ ├── RefIdObject.cs │ │ │ │ ├── ScriptFunctionDelegate.cs │ │ │ │ ├── SymbolRef.cs │ │ │ │ ├── SymbolRefType.cs │ │ │ │ ├── Table.cs │ │ │ │ ├── TablePair.cs │ │ │ │ ├── TailCallData.cs │ │ │ │ ├── TypeValidationFlags.cs │ │ │ │ ├── UserData.cs │ │ │ │ ├── WellKnownSymbols.cs │ │ │ │ └── YieldRequest.cs │ │ │ ├── Debugging │ │ │ │ ├── DebugService.cs │ │ │ │ ├── DebuggerAction.cs │ │ │ │ ├── DebuggerCaps.cs │ │ │ │ ├── IDebugger.cs │ │ │ │ ├── SourceCode.cs │ │ │ │ ├── SourceRef.cs │ │ │ │ ├── WatchItem.cs │ │ │ │ └── WatchType.cs │ │ │ ├── Diagnostics │ │ │ │ ├── PerformanceCounter.cs │ │ │ │ ├── PerformanceCounterType.cs │ │ │ │ ├── PerformanceCounters │ │ │ │ │ ├── DummyPerformanceStopwatch.cs │ │ │ │ │ ├── GlobalPerformanceStopwatch.cs │ │ │ │ │ ├── IPerformanceStopwatch.cs │ │ │ │ │ └── PerformanceStopwatch.cs │ │ │ │ ├── PerformanceResult.cs │ │ │ │ └── PerformanceStatistics.cs │ │ │ ├── Errors │ │ │ │ ├── DynamicExpressionException.cs │ │ │ │ ├── InternalErrorException.cs │ │ │ │ ├── InterpreterException.cs │ │ │ │ ├── ScriptRuntimeException.cs │ │ │ │ └── SyntaxErrorException.cs │ │ │ ├── Execution │ │ │ │ ├── DynamicExpression.cs │ │ │ │ ├── InstructionFieldUsage.cs │ │ │ │ ├── Scopes │ │ │ │ │ ├── BuildTimeScope.cs │ │ │ │ │ ├── BuildTimeScopeBlock.cs │ │ │ │ │ ├── BuildTimeScopeFrame.cs │ │ │ │ │ ├── ClosureContext.cs │ │ │ │ │ ├── IClosureBuilder.cs │ │ │ │ │ ├── LoopTracker.cs │ │ │ │ │ ├── RuntimeScopeBlock.cs │ │ │ │ │ └── RuntimeScopeFrame.cs │ │ │ │ ├── ScriptExecutionContext.cs │ │ │ │ ├── ScriptLoadingContext.cs │ │ │ │ └── VM │ │ │ │ │ ├── ByteCode.cs │ │ │ │ │ ├── CallStackItem.cs │ │ │ │ │ ├── CallStackItemFlags.cs │ │ │ │ │ ├── ExecutionState.cs │ │ │ │ │ ├── Instruction.cs │ │ │ │ │ ├── OpCode.cs │ │ │ │ │ ├── OpCodeMetadataType.cs │ │ │ │ │ └── Processor │ │ │ │ │ ├── DebugContext.cs │ │ │ │ │ ├── Processor.cs │ │ │ │ │ ├── Processor_BinaryDump.cs │ │ │ │ │ ├── Processor_Coroutines.cs │ │ │ │ │ ├── Processor_Debugger.cs │ │ │ │ │ ├── Processor_Errors.cs │ │ │ │ │ ├── Processor_IExecutionContext.cs │ │ │ │ │ ├── Processor_InstructionLoop.cs │ │ │ │ │ ├── Processor_Scope.cs │ │ │ │ │ └── Processor_UtilityFunctions.cs │ │ │ ├── IO │ │ │ │ ├── BinDumpBinaryReader.cs │ │ │ │ ├── BinDumpBinaryWriter.cs │ │ │ │ └── UndisposableStream.cs │ │ │ ├── Interop │ │ │ │ ├── Attributes │ │ │ │ │ ├── MoonSharpHiddenAttribute.cs │ │ │ │ │ ├── MoonSharpHideMemberAttribute.cs │ │ │ │ │ ├── MoonSharpPropertyAttribute.cs │ │ │ │ │ ├── MoonSharpUserDataAttribute.cs │ │ │ │ │ ├── MoonSharpUserDataMetamethodAttribute.cs │ │ │ │ │ └── MoonSharpVisibleAttribute.cs │ │ │ │ ├── BasicDescriptors │ │ │ │ │ ├── DispatchingUserDataDescriptor.cs │ │ │ │ │ ├── IMemberDescriptor.cs │ │ │ │ │ ├── IOptimizableDescriptor.cs │ │ │ │ │ ├── IOverloadableMemberDescriptor.cs │ │ │ │ │ ├── MemberDescriptorAccess.cs │ │ │ │ │ └── ParameterDescriptor.cs │ │ │ │ ├── Converters │ │ │ │ │ ├── ClrToScriptConversions.cs │ │ │ │ │ ├── NumericConversions.cs │ │ │ │ │ ├── ScriptToClrConversions.cs │ │ │ │ │ ├── StringConversions.cs │ │ │ │ │ └── TableConversions.cs │ │ │ │ ├── DescriptorHelpers.cs │ │ │ │ ├── IGeneratorUserDataDescriptor.cs │ │ │ │ ├── IUserDataDescriptor.cs │ │ │ │ ├── IUserDataMemberDescriptor.cs │ │ │ │ ├── IUserDataType.cs │ │ │ │ ├── IWireableDescriptor.cs │ │ │ │ ├── InteropAccessMode.cs │ │ │ │ ├── InteropRegistrationPolicy.cs │ │ │ │ ├── LuaStateInterop │ │ │ │ │ ├── CharPtr.cs │ │ │ │ │ ├── LuaBase.cs │ │ │ │ │ ├── LuaBase_CLib.cs │ │ │ │ │ ├── LuaLBuffer.cs │ │ │ │ │ ├── LuaState.cs │ │ │ │ │ └── Tools.cs │ │ │ │ ├── PredefinedUserData │ │ │ │ │ ├── AnonWrapper.cs │ │ │ │ │ └── EnumerableWrapper.cs │ │ │ │ ├── PropertyTableAssigner.cs │ │ │ │ ├── ProxyObjects │ │ │ │ │ ├── DelegateProxyFactory.cs │ │ │ │ │ └── IProxyFactory.cs │ │ │ │ ├── ReflectionSpecialNames.cs │ │ │ │ ├── RegistrationPolicies │ │ │ │ │ ├── AutomaticRegistrationPolicy.cs │ │ │ │ │ ├── DefaultRegistrationPolicy.cs │ │ │ │ │ ├── IRegistrationPolicy.cs │ │ │ │ │ └── PermanentRegistrationPolicy.cs │ │ │ │ ├── StandardDescriptors │ │ │ │ │ ├── AutoDescribingUserDataDescriptor.cs │ │ │ │ │ ├── CompositeUserDataDescriptor.cs │ │ │ │ │ ├── EventFacade.cs │ │ │ │ │ ├── HardwiredDescriptors │ │ │ │ │ │ ├── DefaultValue.cs │ │ │ │ │ │ ├── HardwiredMemberDescriptor.cs │ │ │ │ │ │ ├── HardwiredMethodMemberDescriptor.cs │ │ │ │ │ │ └── HardwiredUserDataDescriptor.cs │ │ │ │ │ ├── MemberDescriptors │ │ │ │ │ │ ├── ArrayMemberDescriptor.cs │ │ │ │ │ │ ├── DynValueMemberDescriptor.cs │ │ │ │ │ │ ├── FunctionMemberDescriptorBase.cs │ │ │ │ │ │ └── ObjectCallbackMemberDescriptor.cs │ │ │ │ │ ├── ProxyUserDataDescriptor.cs │ │ │ │ │ ├── ReflectionMemberDescriptors │ │ │ │ │ │ ├── EventMemberDescriptor.cs │ │ │ │ │ │ ├── FieldMemberDescriptor.cs │ │ │ │ │ │ ├── MethodMemberDescriptor.cs │ │ │ │ │ │ ├── OverloadedMethodMemberDescriptor.cs │ │ │ │ │ │ ├── PropertyMemberDescriptor.cs │ │ │ │ │ │ └── ValueTypeDefaultCtorMemberDescriptor.cs │ │ │ │ │ ├── StandardEnumUserDataDescriptor.cs │ │ │ │ │ ├── StandardGenericsUserDataDescriptor.cs │ │ │ │ │ └── StandardUserDataDescriptor.cs │ │ │ │ ├── UserDataMemberType.cs │ │ │ │ └── UserDataRegistries │ │ │ │ │ ├── ExtensionMethodsRegistry.cs │ │ │ │ │ └── TypeDescriptorRegistry.cs │ │ │ ├── Loaders │ │ │ │ ├── EmbeddedResourcesScriptLoader.cs │ │ │ │ ├── FileSystemScriptLoader.cs │ │ │ │ ├── IScriptLoader.cs │ │ │ │ ├── InvalidScriptLoader.cs │ │ │ │ ├── ScriptLoaderBase.cs │ │ │ │ └── UnityAssetsScriptLoader.cs │ │ │ ├── Modules │ │ │ │ ├── CoreModules.cs │ │ │ │ ├── ModuleRegister.cs │ │ │ │ ├── MoonSharpModuleAttribute.cs │ │ │ │ ├── MoonSharpModuleConstantAttribute.cs │ │ │ │ └── MoonSharpModuleMethodAttribute.cs │ │ │ ├── Options │ │ │ │ └── ColonOperatorBehaviour.cs │ │ │ ├── Platforms │ │ │ │ ├── DotNetCorePlatformAccessor.cs │ │ │ │ ├── IPlatformAccessor.cs │ │ │ │ ├── LimitedPlatformAccessor.cs │ │ │ │ ├── PlatformAccessorBase.cs │ │ │ │ ├── PlatformAutoDetector.cs │ │ │ │ ├── StandardFileType.cs │ │ │ │ └── StandardPlatformAccessor.cs │ │ │ ├── REPL │ │ │ │ ├── ReplHistoryNavigator.cs │ │ │ │ ├── ReplInterpreter.cs │ │ │ │ └── ReplInterpreterScriptLoader.cs │ │ │ ├── Script.cs │ │ │ ├── ScriptGlobalOptions.cs │ │ │ ├── ScriptOptions.cs │ │ │ ├── Serialization │ │ │ │ ├── Json │ │ │ │ │ ├── JsonNull.cs │ │ │ │ │ └── JsonTableConverter.cs │ │ │ │ ├── ObjectValueConverter.cs │ │ │ │ └── SerializationExtensions.cs │ │ │ └── Tree │ │ │ │ ├── Expression_.cs │ │ │ │ ├── Expressions │ │ │ │ ├── AdjustmentExpression.cs │ │ │ │ ├── BinaryOperatorExpression.cs │ │ │ │ ├── DynamicExprExpression.cs │ │ │ │ ├── ExprListExpression.cs │ │ │ │ ├── FunctionCallExpression.cs │ │ │ │ ├── FunctionDefinitionExpression.cs │ │ │ │ ├── IndexExpression.cs │ │ │ │ ├── LiteralExpression.cs │ │ │ │ ├── SymbolRefExpression.cs │ │ │ │ ├── TableConstructor.cs │ │ │ │ └── UnaryOperatorExpression.cs │ │ │ │ ├── Fast_Interface │ │ │ │ └── Loader_Fast.cs │ │ │ │ ├── IVariable.cs │ │ │ │ ├── Lexer │ │ │ │ ├── Lexer.cs │ │ │ │ ├── LexerUtils.cs │ │ │ │ ├── Token.cs │ │ │ │ └── TokenType.cs │ │ │ │ ├── Loop.cs │ │ │ │ ├── NodeBase.cs │ │ │ │ ├── Statement.cs │ │ │ │ └── Statements │ │ │ │ ├── AssignmentStatement.cs │ │ │ │ ├── BreakStatement.cs │ │ │ │ ├── ChunkStatement.cs │ │ │ │ ├── CompositeStatement.cs │ │ │ │ ├── EmptyStatement.cs │ │ │ │ ├── ForEachLoopStatement.cs │ │ │ │ ├── ForLoopStatement.cs │ │ │ │ ├── FunctionCallStatement.cs │ │ │ │ ├── FunctionDefinitionStatement.cs │ │ │ │ ├── GotoStatement.cs │ │ │ │ ├── IfStatement.cs │ │ │ │ ├── LabelStatement.cs │ │ │ │ ├── RepeatStatement.cs │ │ │ │ ├── ReturnStatement.cs │ │ │ │ ├── ScopeBlockStatement.cs │ │ │ │ └── WhileStatement.cs │ │ │ ├── MoonSharp.asmdef │ │ │ └── OI READ ME.txt │ ├── Prefab │ │ ├── CharacterTest.mat │ │ ├── EnemyTest.mat │ │ ├── ItemTest.mat │ │ ├── MapCharacter.prefab │ │ ├── MapEnemy.prefab │ │ ├── MapItem.prefab │ │ ├── MapObject.prefab │ │ ├── MapTile.prefab │ │ └── ObjectTest.mat │ ├── Resources │ │ ├── DOTweenSettings.asset │ │ ├── Data │ │ │ ├── Level Table │ │ │ │ ├── LevelTableBalanced.asset │ │ │ │ ├── LevelTableKingsField1.asset │ │ │ │ ├── LevelTableKingsField2.asset │ │ │ │ ├── LevelTableMagicalFocus.asset │ │ │ │ └── LevelTablePhysicalFocus.asset │ │ │ └── TestGameData.asset │ │ ├── GameInformation.asset │ │ └── GameMapData.asset │ ├── Scene │ │ ├── SCNAudioTest.unity │ │ ├── SCNGame.unity │ │ ├── SCNGame │ │ │ └── ObjectsSubScene.unity │ │ ├── SCNMain.unity │ │ ├── SCNMenu.unity │ │ ├── SCNModelTest.unity │ │ ├── SCNSequencePlayer.unity │ │ ├── SCNTextureTest.unity │ │ └── SCNTitle.unity │ ├── Script │ │ ├── Core │ │ │ └── StateMachine │ │ │ │ ├── BaseState.cs │ │ │ │ └── StateMachine.cs │ │ ├── Data │ │ │ ├── GameData.cs │ │ │ ├── LevelTable.cs │ │ │ ├── MapData.cs │ │ │ └── MapEvents.cs │ │ ├── Debugging │ │ │ ├── AudioTestController.cs │ │ │ ├── ModelTestController.cs │ │ │ └── TextureTestController.cs │ │ ├── Editor │ │ │ └── BuildAssetBundles.cs │ │ ├── Extensions │ │ │ └── StringExtensions.cs │ │ ├── Game │ │ │ ├── GameInformation.cs │ │ │ ├── GameManager.cs │ │ │ ├── GameStateMachine.cs │ │ │ └── States │ │ │ │ ├── GameStateInitialize.cs │ │ │ │ ├── GameStateSequence.cs │ │ │ │ └── GameStateTitle.cs │ │ ├── Map │ │ │ └── MapController.cs │ │ ├── Menu │ │ │ └── TitleScreenController.cs │ │ ├── Sequence │ │ │ ├── SequenceController.cs │ │ │ ├── SequenceFile.cs │ │ │ └── SequenceMode.cs │ │ └── Utility │ │ │ └── Logger.cs │ ├── TextMesh Pro │ │ ├── Fonts │ │ │ ├── LiberationSans - OFL.txt │ │ │ └── LiberationSans.ttf │ │ ├── Resources │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ └── LiberationSans SDF.asset │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── Sprite Assets │ │ │ │ └── EmojiOne.asset │ │ │ ├── Style Sheets │ │ │ │ └── Default Style Sheet.asset │ │ │ └── TMP Settings.asset │ │ ├── Shaders │ │ │ ├── SDFFunctions.hlsl │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ ├── TMP_Bitmap.shader │ │ │ ├── TMP_SDF Overlay.shader │ │ │ ├── TMP_SDF SSD.shader │ │ │ ├── TMP_SDF-HDRP LIT.shadergraph │ │ │ ├── TMP_SDF-HDRP UNLIT.shadergraph │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ ├── TMP_SDF-Mobile-2-Pass.shader │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ ├── TMP_SDF-Surface.shader │ │ │ ├── TMP_SDF-URP Lit.shadergraph │ │ │ ├── TMP_SDF-URP Unlit.shadergraph │ │ │ ├── TMP_SDF.shader │ │ │ ├── TMP_Sprite.shader │ │ │ ├── TMPro.cginc │ │ │ ├── TMPro_Mobile.cginc │ │ │ ├── TMPro_Properties.cginc │ │ │ └── TMPro_Surface.cginc │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne.json │ │ │ └── EmojiOne.png │ └── Texture │ │ └── T2DUIFrameAtlas.bmp ├── Packages │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── EntitiesClientSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── MemorySettings.asset │ ├── MultiplayerManager.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Packages │ └── com.unity.testtools.codecoverage │ │ └── Settings.json │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── SceneTemplateSettings.json │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset ├── README.md ├── Runtimes └── Som2kRuntime │ ├── Formats │ ├── EnemyPR2File.cs │ ├── ItemPR2File.cs │ ├── MDOFile.cs │ ├── NpcPR2File.cs │ ├── ObjectPR2File.cs │ └── SYSDatFile.cs │ ├── GeneratorImpl.cs │ └── Som2kRuntime.csproj ├── Web └── version.php └── global.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/.github/workflows/builds.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/.gitmodules -------------------------------------------------------------------------------- /Extra/ParamPro/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/App.xaml -------------------------------------------------------------------------------- /Extra/ParamPro/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/App.xaml.cs -------------------------------------------------------------------------------- /Extra/ParamPro/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/AssemblyInfo.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Control/FractionalBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/FractionalBox.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Control/PRFNpcControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/PRFNpcControl.xaml -------------------------------------------------------------------------------- /Extra/ParamPro/Control/PRFNpcControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/PRFNpcControl.xaml.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Control/PRFObjectControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/PRFObjectControl.xaml -------------------------------------------------------------------------------- /Extra/ParamPro/Control/PRFObjectControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/PRFObjectControl.xaml.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Control/PRMMapControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/PRMMapControl.xaml -------------------------------------------------------------------------------- /Extra/ParamPro/Control/PRMMapControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/PRMMapControl.xaml.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Control/SfxItemControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/SfxItemControl.xaml -------------------------------------------------------------------------------- /Extra/ParamPro/Control/SfxItemControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/SfxItemControl.xaml.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Control/SndItemControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/SndItemControl.xaml -------------------------------------------------------------------------------- /Extra/ParamPro/Control/SndItemControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Control/SndItemControl.xaml.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Format/EditorMapPRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Format/EditorMapPRT.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Format/EditorNpcPRF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Format/EditorNpcPRF.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Format/EditorObjPRF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Format/EditorObjPRF.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Format/FX2DType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Format/FX2DType.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Format/NpcAnimations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Format/NpcAnimations.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Format/PrfSfxItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Format/PrfSfxItem.cs -------------------------------------------------------------------------------- /Extra/ParamPro/Format/PrfSndItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Format/PrfSndItem.cs -------------------------------------------------------------------------------- /Extra/ParamPro/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/MainWindow.xaml -------------------------------------------------------------------------------- /Extra/ParamPro/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Extra/ParamPro/ParamPro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/ParamPro.csproj -------------------------------------------------------------------------------- /Extra/ParamPro/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Properties/launchSettings.json -------------------------------------------------------------------------------- /Extra/ParamPro/Theme/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/ParamPro/Theme/Dark.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/App.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/App.xaml.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/AssemblyInfo.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Controls/ControllerBinding.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Controls/ControllerBinding.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Controls/ControllerBinding.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Controls/ControllerBinding.xaml.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Controls/ControllerTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Controls/ControllerTab.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Controls/ControllerTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Controls/ControllerTab.xaml.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Controls/KeyboardMouseBinding.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Controls/KeyboardMouseBinding.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Controls/KeyboardMouseBinding.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Controls/KeyboardMouseBinding.xaml.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Controls/KeyboardMouseTab.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Controls/KeyboardMouseTab.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Controls/KeyboardMouseTab.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Controls/KeyboardMouseTab.xaml.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Core/ControlBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Core/ControlBinding.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Core/ControllerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Core/ControllerState.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Injector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Injector.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/128-24-ExitButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/128-24-ExitButton.png -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/128-24-PlayButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/128-24-PlayButton.png -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/128-24-SettingsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/128-24-SettingsButton.png -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/96-96-Unplug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/96-96-Unplug.png -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/960-540-Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/960-540-Background.png -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/click.wav -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/hover.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/hover.wav -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/icon.ico -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/icon.png -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/launcher_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/launcher_config.json -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LAUNCHER/the_hush.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LAUNCHER/the_hush.wav -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/LaunchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/LaunchConfig.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/NativeMethods.txt -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Sealed Sword Stone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Sealed Sword Stone.csproj -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Theme/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Theme/Dark.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/UserConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/UserConfig.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Windows/ConfigurationDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Windows/ConfigurationDialog.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Windows/ConfigurationDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Windows/ConfigurationDialog.xaml.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Windows/ControlBindingDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Windows/ControlBindingDialog.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Windows/ControlBindingDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Windows/ControlBindingDialog.xaml.cs -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /Extra/Sealed Sword Stone/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Sealed Sword Stone/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Extra/Unsealer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/.gitignore -------------------------------------------------------------------------------- /Extra/Unsealer/Unsealer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/Unsealer.vcxproj -------------------------------------------------------------------------------- /Extra/Unsealer/Unsealer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/Unsealer.vcxproj.filters -------------------------------------------------------------------------------- /Extra/Unsealer/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/dllmain.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/readme.md -------------------------------------------------------------------------------- /Extra/Unsealer/sdk/inc/fkyaml/fkyaml_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/sdk/inc/fkyaml/fkyaml_fwd.hpp -------------------------------------------------------------------------------- /Extra/Unsealer/sdk/inc/fkyaml/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/sdk/inc/fkyaml/node.hpp -------------------------------------------------------------------------------- /Extra/Unsealer/sdk/inc/rapidyaml-0.9.0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/sdk/inc/rapidyaml-0.9.0.hpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealconf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealconf.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealconf.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealdata.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealdata.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealdraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealdraw.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealdraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealdraw.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealfilesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealfilesystem.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealfilesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealfilesystem.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealgdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealgdi.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealgdi.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealgold.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealgold.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealgold.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealgold.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealhash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealhash.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealhash.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealinput.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealinput.h -------------------------------------------------------------------------------- /Extra/Unsealer/unseallog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unseallog.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unseallog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unseallog.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealmath.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealmath.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealmemory.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealmemory.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealplayer.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealplayer.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealsound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealsound.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealsound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealsound.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealtime.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealtime.h -------------------------------------------------------------------------------- /Extra/Unsealer/unsealwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealwindow.cpp -------------------------------------------------------------------------------- /Extra/Unsealer/unsealwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Extra/Unsealer/unsealwindow.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LICENSE -------------------------------------------------------------------------------- /Lawful Blade Manager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Lawful Blade Manager.sln -------------------------------------------------------------------------------- /LawfulBlade/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/App.xaml -------------------------------------------------------------------------------- /LawfulBlade/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/App.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/AssemblyInfo.cs -------------------------------------------------------------------------------- /LawfulBlade/Control/InstanceControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Control/InstanceControl.xaml -------------------------------------------------------------------------------- /LawfulBlade/Control/InstanceControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Control/InstanceControl.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/Control/PackageControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Control/PackageControl.xaml -------------------------------------------------------------------------------- /LawfulBlade/Control/PackageControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Control/PackageControl.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/Control/ProjectControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Control/ProjectControl.xaml -------------------------------------------------------------------------------- /LawfulBlade/Control/ProjectControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Control/ProjectControl.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Debug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Debug.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/DownloadManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/DownloadManager.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Extensions/DirectoryInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Extensions/DirectoryInfoExtensions.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Extensions/GuidExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Extensions/GuidExtensions.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/HashThis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/HashThis.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Instance/Instance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Instance/Instance.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Instance/InstanceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Instance/InstanceCommand.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Instance/InstanceCreateArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Instance/InstanceCreateArgs.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Instance/InstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Instance/InstanceManager.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Instance/InstanceTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Instance/InstanceTemplate.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Instance/InstanceVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Instance/InstanceVariable.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/LargeAddressAware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/LargeAddressAware.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Message.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Package/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Package/Package.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Package/PackageCreateArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Package/PackageCreateArgs.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Package/PackageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Package/PackageFile.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Package/PackageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Package/PackageManager.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Package/PackageReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Package/PackageReference.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Package/PackageTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Package/PackageTarget.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Preferences.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Project/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Project/Project.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Project/ProjectCreateArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Project/ProjectCreateArgs.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Project/ProjectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Project/ProjectManager.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/RegistryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/RegistryHelper.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Repository/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Repository/Repository.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Repository/RepositoryCreateArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Repository/RepositoryCreateArgs.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Repository/RepositoryPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Repository/RepositoryPackage.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Runtime/RuntimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Runtime/RuntimeManager.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/UpdateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/UpdateInfo.cs -------------------------------------------------------------------------------- /LawfulBlade/Core/Winblows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Core/Winblows.cs -------------------------------------------------------------------------------- /LawfulBlade/Dialog/AboutDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/AboutDialog.xaml -------------------------------------------------------------------------------- /LawfulBlade/Dialog/AboutDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/AboutDialog.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/Dialog/BusyDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/BusyDialog.xaml -------------------------------------------------------------------------------- /LawfulBlade/Dialog/BusyDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/BusyDialog.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/Dialog/CreateInstanceDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/CreateInstanceDialog.xaml -------------------------------------------------------------------------------- /LawfulBlade/Dialog/CreateInstanceDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/CreateInstanceDialog.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/Dialog/CreateProjectDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/CreateProjectDialog.xaml -------------------------------------------------------------------------------- /LawfulBlade/Dialog/CreateProjectDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/CreateProjectDialog.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/Dialog/PackageManagerDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/PackageManagerDialog.xaml -------------------------------------------------------------------------------- /LawfulBlade/Dialog/PackageManagerDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/PackageManagerDialog.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/Dialog/PreferencesDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/PreferencesDialog.xaml -------------------------------------------------------------------------------- /LawfulBlade/Dialog/PreferencesDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/PreferencesDialog.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/Dialog/PublishProjectDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/PublishProjectDialog.xaml -------------------------------------------------------------------------------- /LawfulBlade/Dialog/PublishProjectDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Dialog/PublishProjectDialog.xaml.cs -------------------------------------------------------------------------------- /LawfulBlade/LawfulBlade.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/LawfulBlade.csproj -------------------------------------------------------------------------------- /LawfulBlade/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Properties/launchSettings.json -------------------------------------------------------------------------------- /LawfulBlade/Resource/128x128_packagedefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/128x128_packagedefault.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/256x256_instancedefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/256x256_instancedefault.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/256x256_projectdefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/256x256_projectdefault.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/48x48_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/48x48_delete.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/48x48_execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/48x48_execute.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/48x48_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/48x48_explorer.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/48x48_managePackages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/48x48_managePackages.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/48x48_runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/48x48_runtime.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/48x48_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/48x48_shortcut.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/576x128_lawfulbladeheader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/576x128_lawfulbladeheader.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/96x96_create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/96x96_create.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/96x96_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/96x96_import.png -------------------------------------------------------------------------------- /LawfulBlade/Resource/moonlight.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/moonlight.ico -------------------------------------------------------------------------------- /LawfulBlade/Resource/moonlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Resource/moonlight.png -------------------------------------------------------------------------------- /LawfulBlade/Theme/Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Theme/Dark.xaml -------------------------------------------------------------------------------- /LawfulBlade/Window/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Window/MainWindow.xaml -------------------------------------------------------------------------------- /LawfulBlade/Window/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBlade/Window/MainWindow.xaml.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/Extensions/LawfulBladeStringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/Extensions/LawfulBladeStringExtensions.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/Generator/GeneratorLoadArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/Generator/GeneratorLoadArgs.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/Generator/GeneratorProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/Generator/GeneratorProperty.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/Generator/GeneratorStartArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/Generator/GeneratorStartArgs.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/Generator/IRuntimeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/Generator/IRuntimeGenerator.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/IO/Endianness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/IO/Endianness.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/IO/FileInputStream.Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/IO/FileInputStream.Array.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/IO/FileInputStream.Compounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/IO/FileInputStream.Compounds.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/IO/FileInputStream.IDisposableImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/IO/FileInputStream.IDisposableImpl.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/IO/FileInputStream.Primitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/IO/FileInputStream.Primitives.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/IO/FileInputStream.Seeking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/IO/FileInputStream.Seeking.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/IO/FileInputStream.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/IO/FileInputStream.String.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/IO/FileInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/IO/FileInputStream.cs -------------------------------------------------------------------------------- /LawfulBladeSDK/LawfulBladeSDK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeSDK/LawfulBladeSDK.csproj -------------------------------------------------------------------------------- /LawfulBladeUpdater/LawfulBladeUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeUpdater/LawfulBladeUpdater.csproj -------------------------------------------------------------------------------- /LawfulBladeUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulBladeUpdater/Program.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Animations/ANCTextFX.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Animations/ANCTextFX.controller -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Animations/ANMTextPulse.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Animations/ANMTextPulse.anim -------------------------------------------------------------------------------- /LawfulRuntime/Assets/AssetBundles/AssetBundles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/AssetBundles/AssetBundles -------------------------------------------------------------------------------- /LawfulRuntime/Assets/AssetBundles/AssetBundles.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/AssetBundles/AssetBundles.manifest -------------------------------------------------------------------------------- /LawfulRuntime/Assets/AssetBundles/trismegistus_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/AssetBundles/trismegistus_test -------------------------------------------------------------------------------- /LawfulRuntime/Assets/AssetBundles/trismegistus_test.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/AssetBundles/trismegistus_test.manifest -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Font/msgothic SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Font/msgothic SDF.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Font/msgothic.ttc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Font/msgothic.ttc -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Material/MATSequenceFont.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Material/MATSequenceFont.mat -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Material/Shader/MATSpriteBlackIsAlpha.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Material/Shader/MATSpriteBlackIsAlpha.mat -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Material/Shader/SHDBlack2Alpha.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Material/Shader/SHDBlack2Alpha.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Material/Shader/SHDModelResource.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Material/Shader/SHDModelResource.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Material/Shader/TEST.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Material/Shader/TEST.mat -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/DOTween.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/DOTween.XML -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/DOTween.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/DOTween.dll -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/DOTween.dll.mdb -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.XML -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/DOTweenEditor.dll.mdb -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenIcon.png -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/DOTweenMiniIcon.png -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer.png -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Footer_dark.png -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Editor/Imgs/Header.jpg -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleAudio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleAudio.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleEPOOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleEPOOutline.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModulePhysics2D.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleSprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleSprite.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUI.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUnityVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUnityVersion.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/Modules/DOTweenModuleUtils.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Demigiant/DOTween/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Demigiant/DOTween/readme.txt -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/IO/Endianness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/IO/Endianness.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.Array.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.Array.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.Compounds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.Compounds.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.IDisposableImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.IDisposableImpl.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.Primitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.Primitives.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.Seeking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.Seeking.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.String.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/IO/FileInputStream.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/AudioResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/AudioResource.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/BaseResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/BaseResource.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/AudioFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/AudioFactory.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/FontFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/FontFactory.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/ModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/ModelFactory.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/ResourceFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/ResourceFactory.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/TextureFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/Factory/TextureFactory.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/BMP/BMPFormatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/BMP/BMPFormatHandler.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/FileFormatCapabilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/FileFormatCapabilities.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/FileFormatFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/FileFormatFilter.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/FileFormatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/FileFormatHandler.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/FileFormatMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/FileFormatMetadata.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/MDO/MDOFormatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/MDO/MDOFormatHandler.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/SND/SNDFormatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/SND/SNDFormatHandler.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/TXR/TXRFormatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/TXR/TXRFormatHandler.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/WAV/WAVFormatHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FileFormat/WAV/WAVFormatHandler.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/FontResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/FontResource.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/Lawful.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/Lawful.lnk -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/ModelResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/ModelResource.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/ResourceManager.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/ResourceOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/ResourceOverride.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/ResourceSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/ResourceSource.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/ResourceState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/ResourceState.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Resource/TextureResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Resource/TextureResource.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/Lawful/Utility/HashThis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/Lawful/Utility/HashThis.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/AsyncExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/AsyncExtensions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Attributes.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Framework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Framework.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkClrBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkClrBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkReflectionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkReflectionBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkCLR.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkCore.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkPCL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkPCL.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkWin8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkWin8.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Stopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Compatibility/Stopwatch.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/BasicModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/BasicModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/Bit32Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/Bit32Module.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/CoroutineModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/CoroutineModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/DebugModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/DebugModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/DynamicModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/DynamicModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/ErrorHandlingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/ErrorHandlingModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/BinaryEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/BinaryEncoding.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/FileUserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/FileUserData.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/FileUserDataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/FileUserDataBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/StandardIOFileUserDataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/StandardIOFileUserDataBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/StreamFileUserDataBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/StreamFileUserDataBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IoModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/IoModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/JsonModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/JsonModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/LoadModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/LoadModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/MathModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/MathModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/MetaTableModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/MetaTableModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/OsSystemModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/OsSystemModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/OsTimeModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/OsTimeModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib/KopiLua_StrLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib/KopiLua_StrLib.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib/StringRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib/StringRange.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/TableIteratorsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/TableIteratorsModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/TableModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/CoreLib/TableModule.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/Extension_Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/Extension_Methods.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/FastStack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/FastStack.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/FastStackDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/FastStackDynamic.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/LinkedListIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/LinkedListIndex.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/MultiDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/MultiDictionary.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/ReferenceEqualityComparer.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/Slice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataStructs/Slice.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/CallbackArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/CallbackArguments.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/CallbackFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/CallbackFunction.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/Closure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/Closure.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/Coroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/Coroutine.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/CoroutineState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/CoroutineState.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/DataType.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/DynValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/DynValue.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/DynValueAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/DynValueAccessor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/IScriptPrivateResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/IScriptPrivateResource.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/RefIdObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/RefIdObject.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/ScriptFunctionDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/ScriptFunctionDelegate.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRef.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRefType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRefType.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/Table.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/TablePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/TablePair.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/TailCallData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/TailCallData.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/TypeValidationFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/TypeValidationFlags.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/UserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/UserData.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/WellKnownSymbols.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/WellKnownSymbols.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/YieldRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/DataTypes/YieldRequest.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/DebugService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/DebugService.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/DebuggerAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/DebuggerAction.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/DebuggerCaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/DebuggerCaps.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/IDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/IDebugger.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/SourceCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/SourceCode.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/SourceRef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/SourceRef.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/WatchItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/WatchItem.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/WatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Debugging/WatchType.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounter.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounterType.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/DummyPerformanceStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/DummyPerformanceStopwatch.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/GlobalPerformanceStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/GlobalPerformanceStopwatch.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/IPerformanceStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/IPerformanceStopwatch.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/PerformanceStopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/PerformanceStopwatch.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceResult.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceStatistics.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/DynamicExpressionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/DynamicExpressionException.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/InternalErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/InternalErrorException.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/InterpreterException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/InterpreterException.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/ScriptRuntimeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/ScriptRuntimeException.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/SyntaxErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Errors/SyntaxErrorException.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/DynamicExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/DynamicExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/InstructionFieldUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/InstructionFieldUsage.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScope.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScopeBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScopeBlock.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScopeFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScopeFrame.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/ClosureContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/ClosureContext.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/IClosureBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/IClosureBuilder.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/LoopTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/LoopTracker.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeBlock.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeFrame.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptExecutionContext.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptLoadingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptLoadingContext.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ByteCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ByteCode.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItem.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItemFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItemFlags.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ExecutionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ExecutionState.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Instruction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Instruction.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCode.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCodeMetadataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCodeMetadataType.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/DebugContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/DebugContext.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_BinaryDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_BinaryDump.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Coroutines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Coroutines.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Debugger.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Errors.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_IExecutionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_IExecutionContext.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_InstructionLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_InstructionLoop.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Scope.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_UtilityFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_UtilityFunctions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/IO/BinDumpBinaryReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/IO/BinDumpBinaryReader.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/IO/BinDumpBinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/IO/BinDumpBinaryWriter.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/IO/UndisposableStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/IO/UndisposableStream.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHiddenAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHiddenAttribute.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHideMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHideMemberAttribute.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpPropertyAttribute.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpUserDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpUserDataAttribute.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpUserDataMetamethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpUserDataMetamethodAttribute.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpVisibleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpVisibleAttribute.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/DispatchingUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/DispatchingUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOptimizableDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOptimizableDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOverloadableMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOverloadableMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/MemberDescriptorAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/MemberDescriptorAccess.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/ParameterDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/ParameterDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/ClrToScriptConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/ClrToScriptConversions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/NumericConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/NumericConversions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/ScriptToClrConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/ScriptToClrConversions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/StringConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/StringConversions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/TableConversions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/TableConversions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/DescriptorHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/DescriptorHelpers.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IGeneratorUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IGeneratorUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataType.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IWireableDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/IWireableDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/InteropAccessMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/InteropAccessMode.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/InteropRegistrationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/InteropRegistrationPolicy.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/CharPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/CharPtr.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaBase_CLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaBase_CLib.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaLBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaLBuffer.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaState.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/Tools.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData/AnonWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData/AnonWrapper.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData/EnumerableWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData/EnumerableWrapper.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/PropertyTableAssigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/PropertyTableAssigner.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects/DelegateProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects/DelegateProxyFactory.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects/IProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects/IProxyFactory.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/ReflectionSpecialNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/ReflectionSpecialNames.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/AutomaticRegistrationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/AutomaticRegistrationPolicy.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/DefaultRegistrationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/DefaultRegistrationPolicy.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/IRegistrationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/IRegistrationPolicy.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/PermanentRegistrationPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/PermanentRegistrationPolicy.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/AutoDescribingUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/AutoDescribingUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/CompositeUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/CompositeUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/EventFacade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/EventFacade.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/DefaultValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/DefaultValue.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredMethodMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredMethodMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/ArrayMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/ArrayMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/DynValueMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/DynValueMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/FunctionMemberDescriptorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/FunctionMemberDescriptorBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/ObjectCallbackMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/ObjectCallbackMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ProxyUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ProxyUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/EventMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/EventMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/FieldMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/FieldMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/MethodMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/MethodMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/OverloadedMethodMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/OverloadedMethodMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/PropertyMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/PropertyMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/ValueTypeDefaultCtorMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/ValueTypeDefaultCtorMemberDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardEnumUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardEnumUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardGenericsUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardGenericsUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardUserDataDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardUserDataDescriptor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataMemberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataMemberType.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries/ExtensionMethodsRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries/ExtensionMethodsRegistry.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries/TypeDescriptorRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries/TypeDescriptorRegistry.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/EmbeddedResourcesScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/EmbeddedResourcesScriptLoader.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/FileSystemScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/FileSystemScriptLoader.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/IScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/IScriptLoader.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/InvalidScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/InvalidScriptLoader.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/ScriptLoaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/ScriptLoaderBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/UnityAssetsScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Loaders/UnityAssetsScriptLoader.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/CoreModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/CoreModules.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/ModuleRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/ModuleRegister.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleAttribute.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleConstantAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleConstantAttribute.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleMethodAttribute.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Options/ColonOperatorBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Options/ColonOperatorBehaviour.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/DotNetCorePlatformAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/DotNetCorePlatformAccessor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/IPlatformAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/IPlatformAccessor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/LimitedPlatformAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/LimitedPlatformAccessor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/PlatformAccessorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/PlatformAccessorBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/PlatformAutoDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/PlatformAutoDetector.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardFileType.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardPlatformAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardPlatformAccessor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/REPL/ReplHistoryNavigator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/REPL/ReplHistoryNavigator.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/REPL/ReplInterpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/REPL/ReplInterpreter.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/REPL/ReplInterpreterScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/REPL/ReplInterpreterScriptLoader.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Script.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Script.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/ScriptGlobalOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/ScriptGlobalOptions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/ScriptOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/ScriptOptions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Serialization/Json/JsonNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Serialization/Json/JsonNull.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Serialization/Json/JsonTableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Serialization/Json/JsonTableConverter.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Serialization/ObjectValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Serialization/ObjectValueConverter.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Serialization/SerializationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Serialization/SerializationExtensions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expression_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expression_.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/AdjustmentExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/AdjustmentExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/BinaryOperatorExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/BinaryOperatorExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/DynamicExprExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/DynamicExprExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/ExprListExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/ExprListExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/FunctionCallExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/FunctionCallExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/FunctionDefinitionExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/FunctionDefinitionExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/IndexExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/IndexExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/LiteralExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/LiteralExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/SymbolRefExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/SymbolRefExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/TableConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/TableConstructor.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/UnaryOperatorExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/UnaryOperatorExpression.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Fast_Interface/Loader_Fast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Fast_Interface/Loader_Fast.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/IVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/IVariable.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/Lexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/Lexer.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/LexerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/LexerUtils.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/Token.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/TokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/TokenType.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Loop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Loop.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/NodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/NodeBase.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/AssignmentStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/AssignmentStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/BreakStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/BreakStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ChunkStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ChunkStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/CompositeStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/CompositeStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/EmptyStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/EmptyStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ForEachLoopStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ForEachLoopStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ForLoopStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ForLoopStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/FunctionCallStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/FunctionCallStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/FunctionDefinitionStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/FunctionDefinitionStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/GotoStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/GotoStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/IfStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/IfStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/LabelStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/LabelStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/RepeatStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/RepeatStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ReturnStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ReturnStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ScopeBlockStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ScopeBlockStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/WhileStatement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/WhileStatement.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/MoonSharp.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/MoonSharp.asmdef -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Plugins/MoonSharp/OI READ ME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Plugins/MoonSharp/OI READ ME.txt -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Prefab/CharacterTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Prefab/CharacterTest.mat -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Prefab/EnemyTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Prefab/EnemyTest.mat -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Prefab/ItemTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Prefab/ItemTest.mat -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Prefab/MapCharacter.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Prefab/MapCharacter.prefab -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Prefab/MapEnemy.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Prefab/MapEnemy.prefab -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Prefab/MapItem.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Prefab/MapItem.prefab -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Prefab/MapObject.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Prefab/MapObject.prefab -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Prefab/MapTile.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Prefab/MapTile.prefab -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Prefab/ObjectTest.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Prefab/ObjectTest.mat -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Resources/DOTweenSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Resources/DOTweenSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Resources/Data/Level Table/LevelTableBalanced.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Resources/Data/Level Table/LevelTableBalanced.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Resources/Data/Level Table/LevelTableKingsField1.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Resources/Data/Level Table/LevelTableKingsField1.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Resources/Data/Level Table/LevelTableKingsField2.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Resources/Data/Level Table/LevelTableKingsField2.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Resources/Data/Level Table/LevelTableMagicalFocus.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Resources/Data/Level Table/LevelTableMagicalFocus.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Resources/Data/Level Table/LevelTablePhysicalFocus.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Resources/Data/Level Table/LevelTablePhysicalFocus.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Resources/Data/TestGameData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Resources/Data/TestGameData.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Resources/GameInformation.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Resources/GameInformation.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Resources/GameMapData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Resources/GameMapData.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Scene/SCNAudioTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Scene/SCNAudioTest.unity -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Scene/SCNGame.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Scene/SCNGame.unity -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Scene/SCNGame/ObjectsSubScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Scene/SCNGame/ObjectsSubScene.unity -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Scene/SCNMain.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Scene/SCNMain.unity -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Scene/SCNMenu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Scene/SCNMenu.unity -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Scene/SCNModelTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Scene/SCNModelTest.unity -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Scene/SCNSequencePlayer.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Scene/SCNSequencePlayer.unity -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Scene/SCNTextureTest.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Scene/SCNTextureTest.unity -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Scene/SCNTitle.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Scene/SCNTitle.unity -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Core/StateMachine/BaseState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Core/StateMachine/BaseState.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Core/StateMachine/StateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Core/StateMachine/StateMachine.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Data/GameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Data/GameData.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Data/LevelTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Data/LevelTable.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Data/MapData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Data/MapData.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Data/MapEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Data/MapEvents.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Debugging/AudioTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Debugging/AudioTestController.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Debugging/ModelTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Debugging/ModelTestController.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Debugging/TextureTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Debugging/TextureTestController.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Editor/BuildAssetBundles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Editor/BuildAssetBundles.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Game/GameInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Game/GameInformation.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Game/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Game/GameManager.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Game/GameStateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Game/GameStateMachine.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Game/States/GameStateInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Game/States/GameStateInitialize.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Game/States/GameStateSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Game/States/GameStateSequence.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Game/States/GameStateTitle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Game/States/GameStateTitle.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Map/MapController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Map/MapController.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Menu/TitleScreenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Menu/TitleScreenController.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Sequence/SequenceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Sequence/SequenceController.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Sequence/SequenceFile.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class SequenceFile 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Sequence/SequenceMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Sequence/SequenceMode.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Script/Utility/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Script/Utility/Logger.cs -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Resources/TMP Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Resources/TMP Settings.asset -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/SDFFunctions.hlsl -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP LIT.shadergraph -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-HDRP UNLIT.shadergraph -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile-2-Pass.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Lit.shadergraph -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF-URP Unlit.shadergraph -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /LawfulRuntime/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /LawfulRuntime/Assets/Texture/T2DUIFrameAtlas.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Assets/Texture/T2DUIFrameAtlas.bmp -------------------------------------------------------------------------------- /LawfulRuntime/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Packages/manifest.json -------------------------------------------------------------------------------- /LawfulRuntime/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/Packages/packages-lock.json -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/EntitiesClientSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/EntitiesClientSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/MultiplayerManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/MultiplayerManager.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /LawfulRuntime/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/LawfulRuntime/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/README.md -------------------------------------------------------------------------------- /Runtimes/Som2kRuntime/Formats/EnemyPR2File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Runtimes/Som2kRuntime/Formats/EnemyPR2File.cs -------------------------------------------------------------------------------- /Runtimes/Som2kRuntime/Formats/ItemPR2File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Runtimes/Som2kRuntime/Formats/ItemPR2File.cs -------------------------------------------------------------------------------- /Runtimes/Som2kRuntime/Formats/MDOFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Runtimes/Som2kRuntime/Formats/MDOFile.cs -------------------------------------------------------------------------------- /Runtimes/Som2kRuntime/Formats/NpcPR2File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Runtimes/Som2kRuntime/Formats/NpcPR2File.cs -------------------------------------------------------------------------------- /Runtimes/Som2kRuntime/Formats/ObjectPR2File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Runtimes/Som2kRuntime/Formats/ObjectPR2File.cs -------------------------------------------------------------------------------- /Runtimes/Som2kRuntime/Formats/SYSDatFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Runtimes/Som2kRuntime/Formats/SYSDatFile.cs -------------------------------------------------------------------------------- /Runtimes/Som2kRuntime/GeneratorImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Runtimes/Som2kRuntime/GeneratorImpl.cs -------------------------------------------------------------------------------- /Runtimes/Som2kRuntime/Som2kRuntime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Runtimes/Som2kRuntime/Som2kRuntime.csproj -------------------------------------------------------------------------------- /Web/version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/Web/version.php -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FromSoft-Modding-Committee-FSMC/LawfulBlade/HEAD/global.json --------------------------------------------------------------------------------