├── .gitignore ├── Assets ├── KeraLua.meta ├── KeraLua │ ├── CharPtr.cs │ ├── CharPtr.cs.meta │ ├── DynamicLibraryPath.cs │ ├── DynamicLibraryPath.cs.meta │ ├── Lua.cs │ ├── Lua.cs.meta │ ├── LuaDebug.cs │ ├── LuaDebug.cs.meta │ ├── LuaState.cs │ ├── LuaState.cs.meta │ ├── LuaTag.cs │ ├── LuaTag.cs.meta │ ├── NativeMethods.cs │ ├── NativeMethods.cs.meta │ ├── Platform.meta │ └── Platform │ │ ├── CLSCompliantAttribute.cs │ │ └── CLSCompliantAttribute.cs.meta ├── LuaTest.cs ├── LuaTest.cs.meta ├── NLua.meta ├── NLua │ ├── COPYRIGHT │ ├── COPYRIGHT.meta │ ├── CheckType.cs │ ├── CheckType.cs.meta │ ├── Config.meta │ ├── Config │ │ ├── NLuaConfig.cs │ │ └── NLuaConfig.cs.meta │ ├── Event.meta │ ├── Event │ │ ├── DebugHookEventArgs.cs │ │ ├── DebugHookEventArgs.cs.meta │ │ ├── EventCodes.cs │ │ ├── EventCodes.cs.meta │ │ ├── EventMasks.cs │ │ ├── EventMasks.cs.meta │ │ ├── HookExceptionEventArgs.cs │ │ └── HookExceptionEventArgs.cs.meta │ ├── Exceptions.meta │ ├── Exceptions │ │ ├── LuaException.cs │ │ ├── LuaException.cs.meta │ │ ├── LuaScriptException.cs │ │ └── LuaScriptException.cs.meta │ ├── Extensions.meta │ ├── Extensions │ │ ├── GeneralExtensions.cs │ │ └── GeneralExtensions.cs.meta │ ├── GenerateEventAssembly.meta │ ├── GenerateEventAssembly │ │ ├── ClassGenerator.cs │ │ ├── ClassGenerator.cs.meta │ │ ├── CodeGeneration.cs │ │ ├── CodeGeneration.cs.meta │ │ ├── DelegateGenerator.cs │ │ ├── DelegateGenerator.cs.meta │ │ ├── ILuaGeneratedType.cs │ │ ├── ILuaGeneratedType.cs.meta │ │ ├── LuaClassType.cs │ │ └── LuaClassType.cs.meta │ ├── Lua.cs │ ├── Lua.cs.meta │ ├── LuaBase.cs │ ├── LuaBase.cs.meta │ ├── LuaFunction.cs │ ├── LuaFunction.cs.meta │ ├── LuaGlobalAttribute.cs │ ├── LuaGlobalAttribute.cs.meta │ ├── LuaHideAttribute.cs │ ├── LuaHideAttribute.cs.meta │ ├── LuaLib.meta │ ├── LuaLib │ │ ├── GCOptions.cs │ │ ├── GCOptions.cs.meta │ │ ├── LuaEnums.cs │ │ ├── LuaEnums.cs.meta │ │ ├── LuaIndexes.cs │ │ ├── LuaIndexes.cs.meta │ │ ├── LuaLib.cs │ │ ├── LuaLib.cs.meta │ │ ├── LuaTypes.cs │ │ ├── LuaTypes.cs.meta │ │ ├── References.cs │ │ └── References.cs.meta │ ├── LuaRegistrationHelper.cs │ ├── LuaRegistrationHelper.cs.meta │ ├── LuaTable.cs │ ├── LuaTable.cs.meta │ ├── LuaUserData.cs │ ├── LuaUserData.cs.meta │ ├── Metatables.cs │ ├── Metatables.cs.meta │ ├── Method.meta │ ├── Method │ │ ├── EventHandlerContainer.cs │ │ ├── EventHandlerContainer.cs.meta │ │ ├── LuaClassHelper.cs │ │ ├── LuaClassHelper.cs.meta │ │ ├── LuaDelegate.cs │ │ ├── LuaDelegate.cs.meta │ │ ├── LuaEventHandler.cs │ │ ├── LuaEventHandler.cs.meta │ │ ├── LuaMethodWrapper.cs │ │ ├── LuaMethodWrapper.cs.meta │ │ ├── MethodArgs.cs │ │ ├── MethodArgs.cs.meta │ │ ├── MethodCache.cs │ │ ├── MethodCache.cs.meta │ │ ├── RegisterEventHandler.cs │ │ └── RegisterEventHandler.cs.meta │ ├── ObjectTranslator.cs │ ├── ObjectTranslator.cs.meta │ ├── ObjectTranslatorPool.cs │ ├── ObjectTranslatorPool.cs.meta │ ├── Platform.meta │ ├── Platform │ │ ├── BindFlags.cs │ │ ├── BindFlags.cs.meta │ │ ├── CLSCompliantAttribute.cs │ │ └── CLSCompliantAttribute.cs.meta │ ├── ProxyType.cs │ └── ProxyType.cs.meta ├── PICO-8Screen.mat ├── PICO-8Screen.mat.meta ├── PICO-8Screen.shader ├── PICO-8Screen.shader.meta ├── PICO8.meta ├── PICO8 │ ├── AudioProcessingUnit.cs │ ├── AudioProcessingUnit.cs.meta │ ├── Cartridge.cs │ ├── Cartridge.cs.meta │ ├── CartridgeData.cs │ ├── CartridgeData.cs.meta │ ├── MemoryModule.cs │ ├── MemoryModule.cs.meta │ ├── MoonSharpPicoEmulator.cs │ ├── MoonSharpPicoEmulator.cs.meta │ ├── NLuaPicoEmulator.cs │ ├── NLuaPicoEmulator.cs.meta │ ├── PicoEmulator.cs │ ├── PicoEmulator.cs.meta │ ├── PictureProcessingUnit.cs │ └── PictureProcessingUnit.cs.meta ├── PICOEE.cs ├── PICOEE.cs.meta ├── Plugins.meta ├── Plugins │ ├── Android.meta │ ├── Android │ │ ├── libs.meta │ │ └── libs │ │ │ ├── armeabi-v7a.meta │ │ │ ├── armeabi-v7a │ │ │ ├── liblua52.so │ │ │ └── liblua52.so.meta │ │ │ ├── x86.meta │ │ │ └── x86 │ │ │ ├── liblua52.so │ │ │ └── liblua52.so.meta │ ├── FixedPointy.meta │ ├── FixedPointy │ │ ├── Fix.cs │ │ ├── Fix.cs.meta │ │ ├── FixConst.cs │ │ ├── FixConst.cs.meta │ │ ├── FixMath.cs │ │ ├── FixMath.cs.meta │ │ ├── FixMathConsts.cs │ │ ├── FixMathConsts.cs.meta │ │ ├── FixedPointy.asmdef │ │ └── FixedPointy.asmdef.meta │ ├── MoonSharp.meta │ ├── MoonSharp │ │ ├── Debugger.meta │ │ ├── Debugger │ │ │ ├── DebuggerLogic.meta │ │ │ ├── DebuggerLogic │ │ │ │ ├── AsyncDebugger.cs │ │ │ │ ├── AsyncDebugger.cs.meta │ │ │ │ ├── EmptyDebugSession.cs │ │ │ │ ├── EmptyDebugSession.cs.meta │ │ │ │ ├── IAsyncDebuggerClient.cs │ │ │ │ ├── IAsyncDebuggerClient.cs.meta │ │ │ │ ├── MoonSharpDebugSession.cs │ │ │ │ ├── MoonSharpDebugSession.cs.meta │ │ │ │ ├── VariableInspector.cs │ │ │ │ └── VariableInspector.cs.meta │ │ │ ├── MoonSharpVsCodeDebugServer.cs │ │ │ ├── MoonSharpVsCodeDebugServer.cs.meta │ │ │ ├── SDK.meta │ │ │ └── SDK │ │ │ │ ├── DebugSession.cs │ │ │ │ ├── DebugSession.cs.meta │ │ │ │ ├── Protocol.cs │ │ │ │ ├── Protocol.cs.meta │ │ │ │ ├── Utilities.cs │ │ │ │ └── Utilities.cs.meta │ │ ├── Interpreter.meta │ │ └── Interpreter │ │ │ ├── AsyncExtensions.cs │ │ │ ├── AsyncExtensions.cs.meta │ │ │ ├── CodeAnalysis.meta │ │ │ ├── CodeAnalysis │ │ │ ├── AstNode.cs │ │ │ └── AstNode.cs.meta │ │ │ ├── Compatibility.meta │ │ │ ├── Compatibility │ │ │ ├── Attributes.cs │ │ │ ├── Attributes.cs.meta │ │ │ ├── Framework.cs │ │ │ ├── Framework.cs.meta │ │ │ ├── Frameworks.meta │ │ │ ├── Frameworks │ │ │ │ ├── Base.meta │ │ │ │ ├── Base │ │ │ │ │ ├── FrameworkBase.cs │ │ │ │ │ ├── FrameworkBase.cs.meta │ │ │ │ │ ├── FrameworkClrBase.cs │ │ │ │ │ ├── FrameworkClrBase.cs.meta │ │ │ │ │ ├── FrameworkReflectionBase.cs │ │ │ │ │ └── FrameworkReflectionBase.cs.meta │ │ │ │ ├── FrameworkCLR.cs │ │ │ │ ├── FrameworkCLR.cs.meta │ │ │ │ ├── FrameworkCore.cs │ │ │ │ ├── FrameworkCore.cs.meta │ │ │ │ ├── FrameworkPCL.cs │ │ │ │ ├── FrameworkPCL.cs.meta │ │ │ │ ├── FrameworkWin8.cs │ │ │ │ └── FrameworkWin8.cs.meta │ │ │ ├── Stopwatch.cs │ │ │ └── Stopwatch.cs.meta │ │ │ ├── CoreLib.meta │ │ │ ├── CoreLib │ │ │ ├── BasicModule.cs │ │ │ ├── BasicModule.cs.meta │ │ │ ├── Bit32Module.cs │ │ │ ├── Bit32Module.cs.meta │ │ │ ├── CoroutineModule.cs │ │ │ ├── CoroutineModule.cs.meta │ │ │ ├── DebugModule.cs │ │ │ ├── DebugModule.cs.meta │ │ │ ├── DynamicModule.cs │ │ │ ├── DynamicModule.cs.meta │ │ │ ├── ErrorHandlingModule.cs │ │ │ ├── ErrorHandlingModule.cs.meta │ │ │ ├── IO.meta │ │ │ ├── IO │ │ │ │ ├── BinaryEncoding.cs │ │ │ │ ├── BinaryEncoding.cs.meta │ │ │ │ ├── FileUserData.cs │ │ │ │ ├── FileUserData.cs.meta │ │ │ │ ├── FileUserDataBase.cs │ │ │ │ ├── FileUserDataBase.cs.meta │ │ │ │ ├── StandardIOFileUserDataBase.cs │ │ │ │ ├── StandardIOFileUserDataBase.cs.meta │ │ │ │ ├── StreamFileUserDataBase.cs │ │ │ │ └── StreamFileUserDataBase.cs.meta │ │ │ ├── IoModule.cs │ │ │ ├── IoModule.cs.meta │ │ │ ├── JsonModule.cs │ │ │ ├── JsonModule.cs.meta │ │ │ ├── LoadModule.cs │ │ │ ├── LoadModule.cs.meta │ │ │ ├── MathModule.cs │ │ │ ├── MathModule.cs.meta │ │ │ ├── MetaTableModule.cs │ │ │ ├── MetaTableModule.cs.meta │ │ │ ├── OsSystemModule.cs │ │ │ ├── OsSystemModule.cs.meta │ │ │ ├── OsTimeModule.cs │ │ │ ├── OsTimeModule.cs.meta │ │ │ ├── StringLib.meta │ │ │ ├── StringLib │ │ │ │ ├── KopiLua_StrLib.cs │ │ │ │ ├── KopiLua_StrLib.cs.meta │ │ │ │ ├── StringRange.cs │ │ │ │ └── StringRange.cs.meta │ │ │ ├── StringModule.cs │ │ │ ├── StringModule.cs.meta │ │ │ ├── TableIteratorsModule.cs │ │ │ ├── TableIteratorsModule.cs.meta │ │ │ ├── TableModule.cs │ │ │ └── TableModule.cs.meta │ │ │ ├── DataStructs.meta │ │ │ ├── DataStructs │ │ │ ├── Extension_Methods.cs │ │ │ ├── Extension_Methods.cs.meta │ │ │ ├── FastStack.cs │ │ │ ├── FastStack.cs.meta │ │ │ ├── FastStackDynamic.cs │ │ │ ├── FastStackDynamic.cs.meta │ │ │ ├── LinkedListIndex.cs │ │ │ ├── LinkedListIndex.cs.meta │ │ │ ├── MultiDictionary.cs │ │ │ ├── MultiDictionary.cs.meta │ │ │ ├── ReferenceEqualityComparer.cs │ │ │ ├── ReferenceEqualityComparer.cs.meta │ │ │ ├── Slice.cs │ │ │ └── Slice.cs.meta │ │ │ ├── DataTypes.meta │ │ │ ├── DataTypes │ │ │ ├── CallbackArguments.cs │ │ │ ├── CallbackArguments.cs.meta │ │ │ ├── CallbackFunction.cs │ │ │ ├── CallbackFunction.cs.meta │ │ │ ├── Closure.cs │ │ │ ├── Closure.cs.meta │ │ │ ├── Coroutine.cs │ │ │ ├── Coroutine.cs.meta │ │ │ ├── CoroutineState.cs │ │ │ ├── CoroutineState.cs.meta │ │ │ ├── DataType.cs │ │ │ ├── DataType.cs.meta │ │ │ ├── DynValue.cs │ │ │ ├── DynValue.cs.meta │ │ │ ├── IScriptPrivateResource.cs │ │ │ ├── IScriptPrivateResource.cs.meta │ │ │ ├── RefIdObject.cs │ │ │ ├── RefIdObject.cs.meta │ │ │ ├── ScriptFunctionDelegate.cs │ │ │ ├── ScriptFunctionDelegate.cs.meta │ │ │ ├── SymbolRef.cs │ │ │ ├── SymbolRef.cs.meta │ │ │ ├── SymbolRefType.cs │ │ │ ├── SymbolRefType.cs.meta │ │ │ ├── Table.cs │ │ │ ├── Table.cs.meta │ │ │ ├── TablePair.cs │ │ │ ├── TablePair.cs.meta │ │ │ ├── TailCallData.cs │ │ │ ├── TailCallData.cs.meta │ │ │ ├── TypeValidationFlags.cs │ │ │ ├── TypeValidationFlags.cs.meta │ │ │ ├── UserData.cs │ │ │ ├── UserData.cs.meta │ │ │ ├── WellKnownSymbols.cs │ │ │ ├── WellKnownSymbols.cs.meta │ │ │ ├── YieldRequest.cs │ │ │ └── YieldRequest.cs.meta │ │ │ ├── Debugging.meta │ │ │ ├── Debugging │ │ │ ├── DebugService.cs │ │ │ ├── DebugService.cs.meta │ │ │ ├── DebuggerAction.cs │ │ │ ├── DebuggerAction.cs.meta │ │ │ ├── DebuggerCaps.cs │ │ │ ├── DebuggerCaps.cs.meta │ │ │ ├── IDebugger.cs │ │ │ ├── IDebugger.cs.meta │ │ │ ├── SourceCode.cs │ │ │ ├── SourceCode.cs.meta │ │ │ ├── SourceRef.cs │ │ │ ├── SourceRef.cs.meta │ │ │ ├── WatchItem.cs │ │ │ ├── WatchItem.cs.meta │ │ │ ├── WatchType.cs │ │ │ └── WatchType.cs.meta │ │ │ ├── Diagnostics.meta │ │ │ ├── Diagnostics │ │ │ ├── PerformanceCounter.cs │ │ │ ├── PerformanceCounter.cs.meta │ │ │ ├── PerformanceCounterType.cs │ │ │ ├── PerformanceCounterType.cs.meta │ │ │ ├── PerformanceCounters.meta │ │ │ ├── PerformanceCounters │ │ │ │ ├── DummyPerformanceStopwatch.cs │ │ │ │ ├── DummyPerformanceStopwatch.cs.meta │ │ │ │ ├── GlobalPerformanceStopwatch.cs │ │ │ │ ├── GlobalPerformanceStopwatch.cs.meta │ │ │ │ ├── IPerformanceStopwatch.cs │ │ │ │ ├── IPerformanceStopwatch.cs.meta │ │ │ │ ├── PerformanceStopwatch.cs │ │ │ │ └── PerformanceStopwatch.cs.meta │ │ │ ├── PerformanceResult.cs │ │ │ ├── PerformanceResult.cs.meta │ │ │ ├── PerformanceStatistics.cs │ │ │ └── PerformanceStatistics.cs.meta │ │ │ ├── Errors.meta │ │ │ ├── Errors │ │ │ ├── DynamicExpressionException.cs │ │ │ ├── DynamicExpressionException.cs.meta │ │ │ ├── InternalErrorException.cs │ │ │ ├── InternalErrorException.cs.meta │ │ │ ├── InterpreterException.cs │ │ │ ├── InterpreterException.cs.meta │ │ │ ├── ScriptRuntimeException.cs │ │ │ ├── ScriptRuntimeException.cs.meta │ │ │ ├── SyntaxErrorException.cs │ │ │ └── SyntaxErrorException.cs.meta │ │ │ ├── Execution.meta │ │ │ ├── Execution │ │ │ ├── DynamicExpression.cs │ │ │ ├── DynamicExpression.cs.meta │ │ │ ├── InstructionFieldUsage.cs │ │ │ ├── InstructionFieldUsage.cs.meta │ │ │ ├── Scopes.meta │ │ │ ├── Scopes │ │ │ │ ├── BuildTimeScope.cs │ │ │ │ ├── BuildTimeScope.cs.meta │ │ │ │ ├── BuildTimeScopeBlock.cs │ │ │ │ ├── BuildTimeScopeBlock.cs.meta │ │ │ │ ├── BuildTimeScopeFrame.cs │ │ │ │ ├── BuildTimeScopeFrame.cs.meta │ │ │ │ ├── ClosureContext.cs │ │ │ │ ├── ClosureContext.cs.meta │ │ │ │ ├── IClosureBuilder.cs │ │ │ │ ├── IClosureBuilder.cs.meta │ │ │ │ ├── LoopTracker.cs │ │ │ │ ├── LoopTracker.cs.meta │ │ │ │ ├── RuntimeScopeBlock.cs │ │ │ │ ├── RuntimeScopeBlock.cs.meta │ │ │ │ ├── RuntimeScopeFrame.cs │ │ │ │ └── RuntimeScopeFrame.cs.meta │ │ │ ├── ScriptExecutionContext.cs │ │ │ ├── ScriptExecutionContext.cs.meta │ │ │ ├── ScriptLoadingContext.cs │ │ │ ├── ScriptLoadingContext.cs.meta │ │ │ ├── VM.meta │ │ │ └── VM │ │ │ │ ├── ByteCode.cs │ │ │ │ ├── ByteCode.cs.meta │ │ │ │ ├── CallStackItem.cs │ │ │ │ ├── CallStackItem.cs.meta │ │ │ │ ├── CallStackItemFlags.cs │ │ │ │ ├── CallStackItemFlags.cs.meta │ │ │ │ ├── ExecutionState.cs │ │ │ │ ├── ExecutionState.cs.meta │ │ │ │ ├── Instruction.cs │ │ │ │ ├── Instruction.cs.meta │ │ │ │ ├── OpCode.cs │ │ │ │ ├── OpCode.cs.meta │ │ │ │ ├── OpCodeMetadataType.cs │ │ │ │ ├── OpCodeMetadataType.cs.meta │ │ │ │ ├── Processor.meta │ │ │ │ └── Processor │ │ │ │ ├── DebugContext.cs │ │ │ │ ├── DebugContext.cs.meta │ │ │ │ ├── Processor.cs │ │ │ │ ├── Processor.cs.meta │ │ │ │ ├── Processor_BinaryDump.cs │ │ │ │ ├── Processor_BinaryDump.cs.meta │ │ │ │ ├── Processor_Coroutines.cs │ │ │ │ ├── Processor_Coroutines.cs.meta │ │ │ │ ├── Processor_Debugger.cs │ │ │ │ ├── Processor_Debugger.cs.meta │ │ │ │ ├── Processor_Errors.cs │ │ │ │ ├── Processor_Errors.cs.meta │ │ │ │ ├── Processor_IExecutionContext.cs │ │ │ │ ├── Processor_IExecutionContext.cs.meta │ │ │ │ ├── Processor_InstructionLoop.cs │ │ │ │ ├── Processor_InstructionLoop.cs.meta │ │ │ │ ├── Processor_Scope.cs │ │ │ │ ├── Processor_Scope.cs.meta │ │ │ │ ├── Processor_UtilityFunctions.cs │ │ │ │ └── Processor_UtilityFunctions.cs.meta │ │ │ ├── IO.meta │ │ │ ├── IO │ │ │ ├── BinDumpBinaryReader.cs │ │ │ ├── BinDumpBinaryReader.cs.meta │ │ │ ├── BinDumpBinaryWriter.cs │ │ │ ├── BinDumpBinaryWriter.cs.meta │ │ │ ├── UndisposableStream.cs │ │ │ └── UndisposableStream.cs.meta │ │ │ ├── Interop.meta │ │ │ ├── Interop │ │ │ ├── Attributes.meta │ │ │ ├── Attributes │ │ │ │ ├── MoonSharpHiddenAttribute.cs │ │ │ │ ├── MoonSharpHiddenAttribute.cs.meta │ │ │ │ ├── MoonSharpHideMemberAttribute.cs │ │ │ │ ├── MoonSharpHideMemberAttribute.cs.meta │ │ │ │ ├── MoonSharpPropertyAttribute.cs │ │ │ │ ├── MoonSharpPropertyAttribute.cs.meta │ │ │ │ ├── MoonSharpUserDataAttribute.cs │ │ │ │ ├── MoonSharpUserDataAttribute.cs.meta │ │ │ │ ├── MoonSharpUserDataMetamethodAttribute.cs │ │ │ │ ├── MoonSharpUserDataMetamethodAttribute.cs.meta │ │ │ │ ├── MoonSharpVisibleAttribute.cs │ │ │ │ └── MoonSharpVisibleAttribute.cs.meta │ │ │ ├── BasicDescriptors.meta │ │ │ ├── BasicDescriptors │ │ │ │ ├── DispatchingUserDataDescriptor.cs │ │ │ │ ├── DispatchingUserDataDescriptor.cs.meta │ │ │ │ ├── IMemberDescriptor.cs │ │ │ │ ├── IMemberDescriptor.cs.meta │ │ │ │ ├── IOptimizableDescriptor.cs │ │ │ │ ├── IOptimizableDescriptor.cs.meta │ │ │ │ ├── IOverloadableMemberDescriptor.cs │ │ │ │ ├── IOverloadableMemberDescriptor.cs.meta │ │ │ │ ├── MemberDescriptorAccess.cs │ │ │ │ ├── MemberDescriptorAccess.cs.meta │ │ │ │ ├── ParameterDescriptor.cs │ │ │ │ └── ParameterDescriptor.cs.meta │ │ │ ├── Converters.meta │ │ │ ├── Converters │ │ │ │ ├── ClrToScriptConversions.cs │ │ │ │ ├── ClrToScriptConversions.cs.meta │ │ │ │ ├── NumericConversions.cs │ │ │ │ ├── NumericConversions.cs.meta │ │ │ │ ├── ScriptToClrConversions.cs │ │ │ │ ├── ScriptToClrConversions.cs.meta │ │ │ │ ├── StringConversions.cs │ │ │ │ ├── StringConversions.cs.meta │ │ │ │ ├── TableConversions.cs │ │ │ │ └── TableConversions.cs.meta │ │ │ ├── CustomConvertersCollection.cs │ │ │ ├── CustomConvertersCollection.cs.meta │ │ │ ├── DescriptorHelpers.cs │ │ │ ├── DescriptorHelpers.cs.meta │ │ │ ├── IGeneratorUserDataDescriptor.cs │ │ │ ├── IGeneratorUserDataDescriptor.cs.meta │ │ │ ├── IUserDataDescriptor.cs │ │ │ ├── IUserDataDescriptor.cs.meta │ │ │ ├── IUserDataMemberDescriptor.cs │ │ │ ├── IUserDataMemberDescriptor.cs.meta │ │ │ ├── IUserDataType.cs │ │ │ ├── IUserDataType.cs.meta │ │ │ ├── IWireableDescriptor.cs │ │ │ ├── IWireableDescriptor.cs.meta │ │ │ ├── InteropAccessMode.cs │ │ │ ├── InteropAccessMode.cs.meta │ │ │ ├── InteropRegistrationPolicy.cs │ │ │ ├── InteropRegistrationPolicy.cs.meta │ │ │ ├── LuaStateInterop.meta │ │ │ ├── LuaStateInterop │ │ │ │ ├── CharPtr.cs │ │ │ │ ├── CharPtr.cs.meta │ │ │ │ ├── LuaBase.cs │ │ │ │ ├── LuaBase.cs.meta │ │ │ │ ├── LuaBase_CLib.cs │ │ │ │ ├── LuaBase_CLib.cs.meta │ │ │ │ ├── LuaLBuffer.cs │ │ │ │ ├── LuaLBuffer.cs.meta │ │ │ │ ├── LuaState.cs │ │ │ │ ├── LuaState.cs.meta │ │ │ │ ├── Tools.cs │ │ │ │ └── Tools.cs.meta │ │ │ ├── PredefinedUserData.meta │ │ │ ├── PredefinedUserData │ │ │ │ ├── AnonWrapper.cs │ │ │ │ ├── AnonWrapper.cs.meta │ │ │ │ ├── EnumerableWrapper.cs │ │ │ │ └── EnumerableWrapper.cs.meta │ │ │ ├── PropertyTableAssigner.cs │ │ │ ├── PropertyTableAssigner.cs.meta │ │ │ ├── ProxyObjects.meta │ │ │ ├── ProxyObjects │ │ │ │ ├── DelegateProxyFactory.cs │ │ │ │ ├── DelegateProxyFactory.cs.meta │ │ │ │ ├── IProxyFactory.cs │ │ │ │ └── IProxyFactory.cs.meta │ │ │ ├── ReflectionSpecialNames.cs │ │ │ ├── ReflectionSpecialNames.cs.meta │ │ │ ├── RegistrationPolicies.meta │ │ │ ├── RegistrationPolicies │ │ │ │ ├── AutomaticRegistrationPolicy.cs │ │ │ │ ├── AutomaticRegistrationPolicy.cs.meta │ │ │ │ ├── DefaultRegistrationPolicy.cs │ │ │ │ ├── DefaultRegistrationPolicy.cs.meta │ │ │ │ ├── IRegistrationPolicy.cs │ │ │ │ ├── IRegistrationPolicy.cs.meta │ │ │ │ ├── PermanentRegistrationPolicy.cs │ │ │ │ └── PermanentRegistrationPolicy.cs.meta │ │ │ ├── StandardDescriptors.meta │ │ │ ├── StandardDescriptors │ │ │ │ ├── AutoDescribingUserDataDescriptor.cs │ │ │ │ ├── AutoDescribingUserDataDescriptor.cs.meta │ │ │ │ ├── CompositeUserDataDescriptor.cs │ │ │ │ ├── CompositeUserDataDescriptor.cs.meta │ │ │ │ ├── EventFacade.cs │ │ │ │ ├── EventFacade.cs.meta │ │ │ │ ├── HardwiredDescriptors.meta │ │ │ │ ├── HardwiredDescriptors │ │ │ │ │ ├── DefaultValue.cs │ │ │ │ │ ├── DefaultValue.cs.meta │ │ │ │ │ ├── HardwiredMemberDescriptor.cs │ │ │ │ │ ├── HardwiredMemberDescriptor.cs.meta │ │ │ │ │ ├── HardwiredMethodMemberDescriptor.cs │ │ │ │ │ ├── HardwiredMethodMemberDescriptor.cs.meta │ │ │ │ │ ├── HardwiredUserDataDescriptor.cs │ │ │ │ │ └── HardwiredUserDataDescriptor.cs.meta │ │ │ │ ├── MemberDescriptors.meta │ │ │ │ ├── MemberDescriptors │ │ │ │ │ ├── ArrayMemberDescriptor.cs │ │ │ │ │ ├── ArrayMemberDescriptor.cs.meta │ │ │ │ │ ├── DynValueMemberDescriptor.cs │ │ │ │ │ ├── DynValueMemberDescriptor.cs.meta │ │ │ │ │ ├── FunctionMemberDescriptorBase.cs │ │ │ │ │ ├── FunctionMemberDescriptorBase.cs.meta │ │ │ │ │ ├── ObjectCallbackMemberDescriptor.cs │ │ │ │ │ └── ObjectCallbackMemberDescriptor.cs.meta │ │ │ │ ├── ProxyUserDataDescriptor.cs │ │ │ │ ├── ProxyUserDataDescriptor.cs.meta │ │ │ │ ├── ReflectionMemberDescriptors.meta │ │ │ │ ├── ReflectionMemberDescriptors │ │ │ │ │ ├── EventMemberDescriptor.cs │ │ │ │ │ ├── EventMemberDescriptor.cs.meta │ │ │ │ │ ├── FieldMemberDescriptor.cs │ │ │ │ │ ├── FieldMemberDescriptor.cs.meta │ │ │ │ │ ├── MethodMemberDescriptor.cs │ │ │ │ │ ├── MethodMemberDescriptor.cs.meta │ │ │ │ │ ├── OverloadedMethodMemberDescriptor.cs │ │ │ │ │ ├── OverloadedMethodMemberDescriptor.cs.meta │ │ │ │ │ ├── PropertyMemberDescriptor.cs │ │ │ │ │ ├── PropertyMemberDescriptor.cs.meta │ │ │ │ │ ├── ValueTypeDefaultCtorMemberDescriptor.cs │ │ │ │ │ └── ValueTypeDefaultCtorMemberDescriptor.cs.meta │ │ │ │ ├── StandardEnumUserDataDescriptor.cs │ │ │ │ ├── StandardEnumUserDataDescriptor.cs.meta │ │ │ │ ├── StandardGenericsUserDataDescriptor.cs │ │ │ │ ├── StandardGenericsUserDataDescriptor.cs.meta │ │ │ │ ├── StandardUserDataDescriptor.cs │ │ │ │ └── StandardUserDataDescriptor.cs.meta │ │ │ ├── UserDataMemberType.cs │ │ │ ├── UserDataMemberType.cs.meta │ │ │ ├── UserDataRegistries.meta │ │ │ └── UserDataRegistries │ │ │ │ ├── ExtensionMethodsRegistry.cs │ │ │ │ ├── ExtensionMethodsRegistry.cs.meta │ │ │ │ ├── TypeDescriptorRegistry.cs │ │ │ │ └── TypeDescriptorRegistry.cs.meta │ │ │ ├── LinqHelpers.cs │ │ │ ├── LinqHelpers.cs.meta │ │ │ ├── Loaders.meta │ │ │ ├── Loaders │ │ │ ├── EmbeddedResourcesScriptLoader.cs │ │ │ ├── EmbeddedResourcesScriptLoader.cs.meta │ │ │ ├── FileSystemScriptLoader.cs │ │ │ ├── FileSystemScriptLoader.cs.meta │ │ │ ├── IScriptLoader.cs │ │ │ ├── IScriptLoader.cs.meta │ │ │ ├── InvalidScriptLoader.cs │ │ │ ├── InvalidScriptLoader.cs.meta │ │ │ ├── ScriptLoaderBase.cs │ │ │ ├── ScriptLoaderBase.cs.meta │ │ │ ├── UnityAssetsScriptLoader.cs │ │ │ └── UnityAssetsScriptLoader.cs.meta │ │ │ ├── Modules.meta │ │ │ ├── Modules │ │ │ ├── CoreModules.cs │ │ │ ├── CoreModules.cs.meta │ │ │ ├── ModuleRegister.cs │ │ │ ├── ModuleRegister.cs.meta │ │ │ ├── MoonSharpModuleAttribute.cs │ │ │ ├── MoonSharpModuleAttribute.cs.meta │ │ │ ├── MoonSharpModuleConstantAttribute.cs │ │ │ ├── MoonSharpModuleConstantAttribute.cs.meta │ │ │ ├── MoonSharpModuleMethodAttribute.cs │ │ │ └── MoonSharpModuleMethodAttribute.cs.meta │ │ │ ├── NameSpace_XmlHelp.cs │ │ │ ├── NameSpace_XmlHelp.cs.meta │ │ │ ├── Options.meta │ │ │ ├── Options │ │ │ ├── ColonOperatorBehaviour.cs │ │ │ └── ColonOperatorBehaviour.cs.meta │ │ │ ├── Platforms.meta │ │ │ ├── Platforms │ │ │ ├── DotNetCorePlatformAccessor.cs │ │ │ ├── DotNetCorePlatformAccessor.cs.meta │ │ │ ├── IPlatformAccessor.cs │ │ │ ├── IPlatformAccessor.cs.meta │ │ │ ├── LimitedPlatformAccessor.cs │ │ │ ├── LimitedPlatformAccessor.cs.meta │ │ │ ├── PlatformAccessorBase.cs │ │ │ ├── PlatformAccessorBase.cs.meta │ │ │ ├── PlatformAutoDetector.cs │ │ │ ├── PlatformAutoDetector.cs.meta │ │ │ ├── StandardFileType.cs │ │ │ ├── StandardFileType.cs.meta │ │ │ ├── StandardPlatformAccessor.cs │ │ │ └── StandardPlatformAccessor.cs.meta │ │ │ ├── REPL.meta │ │ │ ├── REPL │ │ │ ├── ReplHistoryNavigator.cs │ │ │ ├── ReplHistoryNavigator.cs.meta │ │ │ ├── ReplInterpreter.cs │ │ │ ├── ReplInterpreter.cs.meta │ │ │ ├── ReplInterpreterScriptLoader.cs │ │ │ └── ReplInterpreterScriptLoader.cs.meta │ │ │ ├── Script.cs │ │ │ ├── Script.cs.meta │ │ │ ├── ScriptGlobalOptions.cs │ │ │ ├── ScriptGlobalOptions.cs.meta │ │ │ ├── ScriptOptions.cs │ │ │ ├── ScriptOptions.cs.meta │ │ │ ├── Serialization.meta │ │ │ ├── Serialization │ │ │ ├── Json.meta │ │ │ ├── Json │ │ │ │ ├── JsonNull.cs │ │ │ │ ├── JsonNull.cs.meta │ │ │ │ ├── JsonTableConverter.cs │ │ │ │ └── JsonTableConverter.cs.meta │ │ │ ├── ObjectValueConverter.cs │ │ │ ├── ObjectValueConverter.cs.meta │ │ │ ├── SerializationExtensions.cs │ │ │ └── SerializationExtensions.cs.meta │ │ │ ├── Tree.meta │ │ │ └── Tree │ │ │ ├── Expression_.cs │ │ │ ├── Expression_.cs.meta │ │ │ ├── Expressions.meta │ │ │ ├── Expressions │ │ │ ├── AdjustmentExpression.cs │ │ │ ├── AdjustmentExpression.cs.meta │ │ │ ├── BinaryOperatorExpression.cs │ │ │ ├── BinaryOperatorExpression.cs.meta │ │ │ ├── DynamicExprExpression.cs │ │ │ ├── DynamicExprExpression.cs.meta │ │ │ ├── ExprListExpression.cs │ │ │ ├── ExprListExpression.cs.meta │ │ │ ├── FunctionCallExpression.cs │ │ │ ├── FunctionCallExpression.cs.meta │ │ │ ├── FunctionDefinitionExpression.cs │ │ │ ├── FunctionDefinitionExpression.cs.meta │ │ │ ├── IndexExpression.cs │ │ │ ├── IndexExpression.cs.meta │ │ │ ├── LiteralExpression.cs │ │ │ ├── LiteralExpression.cs.meta │ │ │ ├── SymbolRefExpression.cs │ │ │ ├── SymbolRefExpression.cs.meta │ │ │ ├── TableConstructor.cs │ │ │ ├── TableConstructor.cs.meta │ │ │ ├── UnaryOperatorExpression.cs │ │ │ └── UnaryOperatorExpression.cs.meta │ │ │ ├── Fast_Interface.meta │ │ │ ├── Fast_Interface │ │ │ ├── Loader_Fast.cs │ │ │ └── Loader_Fast.cs.meta │ │ │ ├── IVariable.cs │ │ │ ├── IVariable.cs.meta │ │ │ ├── Lexer.meta │ │ │ ├── Lexer │ │ │ ├── Lexer.cs │ │ │ ├── Lexer.cs.meta │ │ │ ├── LexerUtils.cs │ │ │ ├── LexerUtils.cs.meta │ │ │ ├── Token.cs │ │ │ ├── Token.cs.meta │ │ │ ├── TokenType.cs │ │ │ └── TokenType.cs.meta │ │ │ ├── Loop.cs │ │ │ ├── Loop.cs.meta │ │ │ ├── NodeBase.cs │ │ │ ├── NodeBase.cs.meta │ │ │ ├── Statement.cs │ │ │ ├── Statement.cs.meta │ │ │ ├── Statements.meta │ │ │ └── Statements │ │ │ ├── AssignmentStatement.cs │ │ │ ├── AssignmentStatement.cs.meta │ │ │ ├── BreakStatement.cs │ │ │ ├── BreakStatement.cs.meta │ │ │ ├── ChunkStatement.cs │ │ │ ├── ChunkStatement.cs.meta │ │ │ ├── CompositeStatement.cs │ │ │ ├── CompositeStatement.cs.meta │ │ │ ├── EmptyStatement.cs │ │ │ ├── EmptyStatement.cs.meta │ │ │ ├── ForEachLoopStatement.cs │ │ │ ├── ForEachLoopStatement.cs.meta │ │ │ ├── ForLoopStatement.cs │ │ │ ├── ForLoopStatement.cs.meta │ │ │ ├── FunctionCallStatement.cs │ │ │ ├── FunctionCallStatement.cs.meta │ │ │ ├── FunctionDefinitionStatement.cs │ │ │ ├── FunctionDefinitionStatement.cs.meta │ │ │ ├── GotoStatement.cs │ │ │ ├── GotoStatement.cs.meta │ │ │ ├── IfStatement.cs │ │ │ ├── IfStatement.cs.meta │ │ │ ├── LabelStatement.cs │ │ │ ├── LabelStatement.cs.meta │ │ │ ├── RepeatStatement.cs │ │ │ ├── RepeatStatement.cs.meta │ │ │ ├── ReturnStatement.cs │ │ │ ├── ReturnStatement.cs.meta │ │ │ ├── ScopeBlockStatement.cs │ │ │ ├── ScopeBlockStatement.cs.meta │ │ │ ├── WhileStatement.cs │ │ │ └── WhileStatement.cs.meta │ ├── lua52.bundle.meta │ ├── lua52.bundle │ │ ├── Contents.meta │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── Info.plist.meta │ │ │ ├── MacOS.meta │ │ │ └── MacOS │ │ │ ├── lua52 │ │ │ ├── lua52.dylib │ │ │ ├── lua52.dylib.meta │ │ │ └── lua52.meta │ ├── pngcs.meta │ ├── pngcs │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── ICSharpCode.SharpZipLib.dll.meta │ │ ├── Pngcs.dll │ │ └── Pngcs.dll.meta │ ├── x86.meta │ ├── x86 │ │ ├── lua52.dll │ │ └── lua52.dll.meta │ ├── x86_64.meta │ └── x86_64 │ │ ├── lua52.dll │ │ └── lua52.dll.meta ├── Scenes.meta ├── Scenes │ ├── SampleScene.unity │ └── SampleScene.unity.meta ├── TouchButton.cs ├── TouchButton.cs.meta ├── colorpalette.png ├── colorpalette.png.meta ├── controller.png ├── controller.png.meta ├── test.unity └── test.unity.meta ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── script.lua /.gitignore: -------------------------------------------------------------------------------- 1 | [Ll]ibrary/ 2 | [Tt]emp/ 3 | [Oo]bj/ 4 | [Bb]uild/ 5 | [Bb]uilds/ 6 | Assets/AssetStoreTools* 7 | 8 | # Visual Studio cache directory 9 | .vs/ 10 | .vscode/ 11 | 12 | # Autogenerated VS/MD/Consulo solution and project files 13 | ExportedObj/ 14 | .consulo/ 15 | *.csproj 16 | *.unityproj 17 | *.sln 18 | *.suo 19 | *.tmp 20 | *.user 21 | *.userprefs 22 | *.pidb 23 | *.booproj 24 | *.svd 25 | *.pdb 26 | *.opendb 27 | 28 | # Unity3D generated meta files 29 | *.pidb.meta 30 | *.pdb.meta 31 | 32 | # Unity3D Generated File On Crash Reports 33 | sysinfo.txt 34 | 35 | # Builds 36 | *.apk 37 | *.unitypackage 38 | -------------------------------------------------------------------------------- /Assets/KeraLua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f33284ffb81ba224ab17cfff829fff20 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/KeraLua/CharPtr.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6661344ffd8d53c43b0f2dac9892544b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/KeraLua/DynamicLibraryPath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbb9004842fc67f47bfe96d732b59829 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/KeraLua/Lua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 365186b874ba1d04b83799fa62456b73 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/KeraLua/LuaDebug.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c28ee8a0439eca44898efd8a9a0c21b9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/KeraLua/LuaState.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | 5 | namespace KeraLua 6 | { 7 | public struct LuaState 8 | { 9 | 10 | public LuaState (IntPtr ptrState) 11 | 12 | : this () 13 | { 14 | state = ptrState; 15 | } 16 | 17 | static public implicit operator LuaState (IntPtr ptr) 18 | { 19 | return new LuaState (ptr); 20 | } 21 | 22 | 23 | static public implicit operator IntPtr (LuaState luastate) 24 | { 25 | return luastate.state; 26 | } 27 | 28 | IntPtr state; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Assets/KeraLua/LuaState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 09801106487523f489fcd1d6c0a0a0e1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/KeraLua/LuaTag.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace KeraLua 7 | { 8 | public struct LuaTag 9 | { 10 | public LuaTag (IntPtr tag) 11 | 12 | : this () 13 | { 14 | this.Tag = tag; 15 | } 16 | 17 | static public implicit operator LuaTag (IntPtr ptr) 18 | { 19 | return new LuaTag (ptr); 20 | } 21 | public IntPtr Tag { get; set; } 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Assets/KeraLua/LuaTag.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23b38c713b96ced458e91622845cc58c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/KeraLua/NativeMethods.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a439a1783d5e0f7479dc8ea3295195fd 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/KeraLua/Platform.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 068343538537f6d4bb66e19123c3060c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/KeraLua/Platform/CLSCompliantAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | 4 | #if UNITY_3D 5 | namespace KeraLua { 6 | /// 7 | /// Disables CLS Compliance in Unity3D. 8 | /// 9 | [Serializable] 10 | [AttributeUsage(AttributeTargets.All)] 11 | [ComVisible(true)] 12 | public class CLSCompliantAttribute : Attribute { 13 | private bool _compliant; 14 | public CLSCompliantAttribute(bool isCompliant) { _compliant = isCompliant; } 15 | public bool IsCompliant { get { return _compliant; } } 16 | } 17 | } 18 | #endif -------------------------------------------------------------------------------- /Assets/KeraLua/Platform/CLSCompliantAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: efcb5f81987bdea4ea1a10917a6dd73c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/LuaTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 952a3e0c1bcdcaf44b8ee8e7cfa23e81 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/NLua.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: baaad808d6b0be94a87f71c22ea477fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/NLua/COPYRIGHT.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfc7caa37b4b92c43ad56f3cbd855cae 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/NLua/CheckType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e63fd094bc0374e42beb731c5607d7ea 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Config.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c8e5da921c2b854ca8b8e5681a2f9b6 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NLua/Config/NLuaConfig.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6563cdde1d79c8f43b9d447cb7d1edff 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Event.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b580bd20ead55b642a9b57eae0ab9450 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NLua/Event/DebugHookEventArgs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 83331b63e9819c348aceba01df91b302 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Event/EventCodes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f383e9f8a44f394093dabd9c7b74af7 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Event/EventMasks.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5300922f5c646c4faee53efc3340f6e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Event/HookExceptionEventArgs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5cb943bf554da124eb05e64d47c3b6ec 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Exceptions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b45e0763c9906440b422ec5ce1b6aa1 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NLua/Exceptions/LuaException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e11e2ac38b7c4394f80748316af04f9a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Exceptions/LuaScriptException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f04d873013527654284bd0213361e52d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Extensions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3dec559b7b60e04e90b956c58f80ad8 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NLua/Extensions/GeneralExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c0c78981581713428ed7971dd94b743 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/GenerateEventAssembly.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: abffc4b7066d7d04ab449e0066fc9361 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NLua/GenerateEventAssembly/ClassGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c849c8b9473808b41993aa7032f94b31 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/GenerateEventAssembly/CodeGeneration.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb14f72375afe8b48ab97ccf1b9a5559 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/GenerateEventAssembly/DelegateGenerator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d4b7ddd3a4cf1540bdb82d2bd0a4aeb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/GenerateEventAssembly/ILuaGeneratedType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eacbe15bc5a025e49b545c30b91ecee8 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/GenerateEventAssembly/LuaClassType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 14a83ca0594d8cf478259f1cfd825906 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Lua.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbd79be01af2c324987ae3276f26cbe0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 543691c1e93d0cc48822a68d9b2a8e3c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5187058199d658f4095f277e16524b04 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaGlobalAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d49e1efe83a29c74cac05c44e6159fa4 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaHideAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6dd8870e74b80c8478e37942a03d93ac 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaLib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11ce780e894ee114d82849aee99b8d4c 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NLua/LuaLib/GCOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56851e44ba2a9ee45b6e1f8562165acc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaLib/LuaEnums.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 474670188cfd1c147aceecc12604526a 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaLib/LuaIndexes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 062f4a2e2fc18954b9e828167bb831d3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaLib/LuaLib.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c04896e5aaba4a419e371fdd59541e3 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaLib/LuaTypes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57137efa224be1243ba73ffa6436cbfc 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaLib/References.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e1470acad8203f4bb8fc471421d1e9b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaRegistrationHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c69cb86e26f02af46915c84f6a98ff69 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaTable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea38ac5e3f18768449a1aee90ef1eae0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/LuaUserData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 39348d402e22b85438e96026f879a44c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Metatables.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7c316d960fbd11848be789457be21b28 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Method.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04914de2c68f81d4ea37552eff67711b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NLua/Method/EventHandlerContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6eb7d5a12f5c544ea45da48ff222def 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Method/LuaClassHelper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57a25bdfebdfcf641ac9e482cedb488e 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Method/LuaDelegate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e17d79e6c82c9a419e041711ae97ff0 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Method/LuaEventHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22dde32f36e8cf3459bc972783d424fb 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Method/LuaMethodWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06baa40b512bfbc48bff1ea71c7fbe04 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Method/MethodArgs.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8a4186d46e636c468104354fe7fbb36 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Method/MethodCache.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c136564163a643a40a37d750743f622b 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Method/RegisterEventHandler.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d11828d7ebef754599b85fc30ae620c 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/ObjectTranslator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c0f7634eed9583d43b8e525d4225e75d 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/ObjectTranslatorPool.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9bb961345682cf744af0e376009ad2e6 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Platform.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd7fee864f818194abd15b3f7188a279 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/NLua/Platform/BindFlags.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | #if !UNITY_3D 4 | namespace System.Reflection 5 | { 6 | public enum BindingFlags 7 | { 8 | Instance = 4, 9 | Static = 8, 10 | Public = 16, 11 | } 12 | } 13 | #endif -------------------------------------------------------------------------------- /Assets/NLua/Platform/BindFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d44c4be97eb31546aabc57b3943ccd1 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/Platform/CLSCompliantAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Runtime.InteropServices; 3 | 4 | #if UNITY_3D 5 | namespace NLua { 6 | /// 7 | /// Disables CLS Compliance in Unity3D. 8 | /// 9 | [Serializable] 10 | [AttributeUsage(AttributeTargets.All)] 11 | [ComVisible(true)] 12 | public class CLSCompliantAttribute : Attribute { 13 | private bool _compliant; 14 | public CLSCompliantAttribute(bool isCompliant) { _compliant = isCompliant; } 15 | public bool IsCompliant { get { return _compliant; } } 16 | } 17 | } 18 | #endif -------------------------------------------------------------------------------- /Assets/NLua/Platform/CLSCompliantAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a955e87ea98cfb0489be6c2575544fe9 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/NLua/ProxyType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 138706dd99982c54c835814c43ff8bca 3 | MonoImporter: 4 | serializedVersion: 2 5 | defaultReferences: [] 6 | executionOrder: 0 7 | icon: {instanceID: 0} 8 | userData: 9 | -------------------------------------------------------------------------------- /Assets/PICO-8Screen.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4d7828b77774d2242b90e2f780e45bf9 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PICO-8Screen.shader.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c85427be24f3dc49aa764c827646736 3 | ShaderImporter: 4 | externalObjects: {} 5 | defaultTextures: [] 6 | nonModifiableTextures: [] 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/PICO8.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d137d5a26b022944583cddd77326d98e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/PICO8/AudioProcessingUnit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e978a25fabe24c4c8ee3f9d81a59e16 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PICO8/Cartridge.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d04e28ac29f705844a269752d0972f52 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PICO8/CartridgeData.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | 4 | namespace TsFreddie.Pico8 5 | { 6 | public class CartridgeData 7 | { 8 | byte[] cartdata; 9 | 10 | public CartridgeData(string filename) 11 | { 12 | 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/PICO8/CartridgeData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ee68d6efa4ed064d8634ccc948da406 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PICO8/MemoryModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41519206e4e9a284e98fa26b765538df 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PICO8/MoonSharpPicoEmulator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 487de1c198b4a804291ed21e6e734b37 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PICO8/NLuaPicoEmulator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e9e3e05608670b4eb1cd0ec0298ef9d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PICO8/PicoEmulator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9cc2955c8e9693a4a83ecf15f7f71a0f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PICO8/PictureProcessingUnit.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d8064ed9643f412469adce6179c48a21 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/PICOEE.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class PICOEE : MonoBehaviour { 6 | 7 | // Use this for initialization 8 | void Start () { 9 | 10 | } 11 | 12 | // Update is called once per frame 13 | void Update () { 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/PICOEE.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 93be18760094fe14ca4b174d3f015a8a 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7007dcda321406e48a5dec468a7d88e8 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Android.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cd5ee8712ff24b44afc06be0d7bc884 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9ee82a189b836594fb8816519b7dee10 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e50db7308fe40b24090942dc9b027827 3 | folderAsset: yes 4 | PluginImporter: 5 | externalObjects: {} 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | - first: 13 | Android: Android 14 | second: 15 | enabled: 1 16 | settings: {} 17 | - first: 18 | Any: 19 | second: 20 | enabled: 0 21 | settings: {} 22 | - first: 23 | Editor: Editor 24 | second: 25 | enabled: 0 26 | settings: 27 | DefaultValueInitialized: true 28 | userData: 29 | assetBundleName: 30 | assetBundleVariant: 31 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/armeabi-v7a/liblua52.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/Plugins/Android/libs/armeabi-v7a/liblua52.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e8bbef6c83cd07469bd7b04051ae1c1 3 | folderAsset: yes 4 | PluginImporter: 5 | externalObjects: {} 6 | serializedVersion: 2 7 | iconMap: {} 8 | executionOrder: {} 9 | isPreloaded: 0 10 | isOverridable: 0 11 | platformData: 12 | - first: 13 | Android: Android 14 | second: 15 | enabled: 1 16 | settings: {} 17 | - first: 18 | Any: 19 | second: 20 | enabled: 0 21 | settings: {} 22 | - first: 23 | Editor: Editor 24 | second: 25 | enabled: 0 26 | settings: 27 | DefaultValueInitialized: true 28 | userData: 29 | assetBundleName: 30 | assetBundleVariant: 31 | -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/liblua52.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/Plugins/Android/libs/x86/liblua52.so -------------------------------------------------------------------------------- /Assets/Plugins/Android/libs/x86/liblua52.so.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0bf5d0fe7d19404baf0a5fc97dd0033 3 | PluginImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | iconMap: {} 7 | executionOrder: {} 8 | isPreloaded: 0 9 | isOverridable: 0 10 | platformData: 11 | - first: 12 | Android: Android 13 | second: 14 | enabled: 1 15 | settings: 16 | CPU: x86 17 | - first: 18 | Any: 19 | second: 20 | enabled: 0 21 | settings: {} 22 | - first: 23 | Editor: Editor 24 | second: 25 | enabled: 0 26 | settings: 27 | DefaultValueInitialized: true 28 | userData: 29 | assetBundleName: 30 | assetBundleVariant: 31 | -------------------------------------------------------------------------------- /Assets/Plugins/FixedPointy.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 48dc9b0ee47f299438cbbc9cd4836f9e 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/FixedPointy/Fix.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e352f0d2271c994cb5a4607aa1b0f0b 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/FixedPointy/FixConst.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f0da41ca766be684caf8d61fd715489f 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/FixedPointy/FixMath.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f97062737331c0f4d85db76b6d79c0b2 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/FixedPointy/FixMathConsts.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4fb75ac2620eaba46b3adb548f03b2d1 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/Plugins/FixedPointy/FixedPointy.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FixedPointy" 3 | } 4 | -------------------------------------------------------------------------------- /Assets/Plugins/FixedPointy/FixedPointy.asmdef.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4cf6ba2d2f4d4704dae08c2c74ebddc2 3 | AssemblyDefinitionImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f9bda7760c02ef94a8adf44bb05d3cef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe983e267963641219d60f73a36907ce 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 71b4d33685e4746ca9cfe341d75910d9 3 | folderAsset: yes 4 | timeCreated: 1476112669 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/AsyncDebugger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9984211c3fbdf48d2bab7bc81675b60f 3 | timeCreated: 1476432885 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/EmptyDebugSession.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e92a4cfb128864cc1a914e4f59b2c73e 3 | timeCreated: 1476432887 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/IAsyncDebuggerClient.cs: -------------------------------------------------------------------------------- 1 | #if (!PCL) && ((!UNITY_5) || UNITY_STANDALONE) 2 | 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | using MoonSharp.Interpreter; 8 | using MoonSharp.Interpreter.Debugging; 9 | 10 | namespace MoonSharp.VsCodeDebugger.DebuggerLogic 11 | { 12 | internal interface IAsyncDebuggerClient 13 | { 14 | void SendStopEvent(); 15 | void OnWatchesUpdated(WatchType watchType); 16 | void OnSourceCodeChanged(int sourceID); 17 | void OnExecutionEnded(); 18 | void OnException(ScriptRuntimeException ex); 19 | void Unbind(); 20 | } 21 | } 22 | 23 | #endif -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/IAsyncDebuggerClient.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 439fb2da136aa426ab021def5caf0f6e 3 | timeCreated: 1476265156 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/MoonSharpDebugSession.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8e5d177091ab64f8fbd15ad5f48d06ae 3 | timeCreated: 1476432884 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/DebuggerLogic/VariableInspector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b828a4315be6894f9ae25f9d3cacd0e 3 | timeCreated: 1476265158 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/MoonSharpVsCodeDebugServer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f49800a7463743149b597062d1b42a2 3 | timeCreated: 1476432878 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/SDK.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0c4fed5fd89f42c5ba1250cd726961b 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/SDK/DebugSession.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41359a96dff8e497abb39aab280e3dcf 3 | timeCreated: 1476265156 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/SDK/Protocol.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62430b596d436444d80bee2512f25a29 3 | timeCreated: 1476265157 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Debugger/SDK/Utilities.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91853d42160014ebd843ee4e1a4f676e 3 | timeCreated: 1476432884 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1d2c5df22fca24da0aab88203047712f 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/AsyncExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 66aa67af332e348cbb7dd54b3d5d6433 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CodeAnalysis.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5eef0a4b7d8c7458b9f013fcbe0202b3 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CodeAnalysis/AstNode.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.CodeAnalysis 3 | { 4 | class AstNode 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CodeAnalysis/AstNode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db3e424c3ff444bb5b4872a8ecb430dd 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6d150008f68617545b69adb7e7fe0f28 3 | folderAsset: yes 4 | timeCreated: 1476432865 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Attributes.cs: -------------------------------------------------------------------------------- 1 | #if PCL || ((!UNITY_EDITOR) && (ENABLE_DOTNET)) 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | 7 | namespace System.Reflection 8 | { 9 | internal class ComVisibleAttribute : Attribute 10 | { 11 | public ComVisibleAttribute(bool dummy) 12 | { } 13 | } 14 | internal class GuidAttribute : Attribute 15 | { 16 | public GuidAttribute(string dummy) 17 | { } 18 | } 19 | } 20 | #endif 21 | 22 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Attributes.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 24be313cbb7a91d42bb1de866ca88289 3 | timeCreated: 1476432878 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Framework.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Reflection; 5 | using System.Text; 6 | using MoonSharp.Interpreter.Compatibility.Frameworks; 7 | 8 | namespace MoonSharp.Interpreter.Compatibility 9 | { 10 | public static class Framework 11 | { 12 | static FrameworkCurrent s_FrameworkCurrent = new FrameworkCurrent(); 13 | 14 | public static FrameworkBase Do { get { return s_FrameworkCurrent; } } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Framework.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 96e3b35563b935d4c8baa02b06f40965 3 | timeCreated: 1476432884 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0d5353a4a6a04164095893dcf6dcd6cb 3 | folderAsset: yes 4 | timeCreated: 1476432866 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0acf142145bc05446acafd786f0bac46 3 | folderAsset: yes 4 | timeCreated: 1476432866 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbb9f51b6e0b0684ca09c843924edd61 3 | timeCreated: 1476432886 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkClrBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0bbb9dec367acb94dbebde49d3745c4d 3 | timeCreated: 1476432876 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/Base/FrameworkReflectionBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f03cffebd263dcb4ab8680ce8d152968 3 | timeCreated: 1476432887 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkCLR.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25aeabf9258b9944ab81620030353790 3 | timeCreated: 1476432878 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkCore.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6df3d0c4b051a347a75d7268c2f6d2a 3 | timeCreated: 1476432886 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkPCL.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bac0f6f9dc5d85f41af33f3b83dbee01 3 | timeCreated: 1476432885 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Frameworks/FrameworkWin8.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 11ab1e37f96fc08418f4794c17e8be0c 3 | timeCreated: 1476435850 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Compatibility/Stopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 23ea8da0a506c1444af1949fa30dd149 3 | timeCreated: 1476432878 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 960b24834b8044fc6acf64f473b5ca61 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/BasicModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eed70b0c3561d4512b8cf9426b5814cd 3 | timeCreated: 1476205335 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/Bit32Module.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c71b14e2cd41a4f70a45ea70cab3e2c7 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/CoroutineModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c160220c9253a4031baa523b549ea9e4 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/DebugModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b3743855cdb543c88b2320c61f28424 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/DynamicModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a82c0d3fa46554bd5857d852f9bd2812 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/ErrorHandlingModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 25a48a75173cc44959f158f5aed1fc00 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d1f6f1bb70deb40239486ed094a36ea2 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/BinaryEncoding.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 675a461a252db43b0a24db05a6dbeabc 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/FileUserData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af797d1c8ef1a415ca0a84f11c04a6f5 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/FileUserDataBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e0c682730fd243eca755897f724ff91 3 | timeCreated: 1476432878 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/StandardIOFileUserDataBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c1fccf4c28e9a4667a0a6984cb2c736d 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IO/StreamFileUserDataBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07ffca2aa60ad4febb46043b8eb2b531 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/IoModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5209e5cca6a8f4dbc888ed4b7e061d55 3 | timeCreated: 1476432882 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/JsonModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: df9d3ec3d79f5431c88af4ab97b6f18a 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/LoadModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90b319234a9a342b6a8649eef72352fd 3 | timeCreated: 1476432884 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/MathModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38103786f8d984326b5123cab6ca4b47 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/MetaTableModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3b971ba440d24e91a6ff0bc9e306d59 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/OsSystemModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bb7798955cba48c6b0e19cf3daa219f 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/OsTimeModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29679b67516094990a23d5066e7af0ea 3 | timeCreated: 1476432879 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a18a955a013284f08b443c601f5b9612 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib/KopiLua_StrLib.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d921f217918ee4c0e97d5ad218c273ab 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringLib/StringRange.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 155a3aa6f6abc4dd5b920c33c2151dab 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/StringModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b3eb3848b53e142a483d14eb6b5b0484 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/TableIteratorsModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8fb696693dc174ef7b58af6c5943ee38 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/CoreLib/TableModule.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7e546c66c742f41e3a49f2c94b7bcdf1 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8525c6b6dcc334ffa93491a383ce3145 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/Extension_Methods.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0546d50186dae45b188cb90769f531fb 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/FastStack.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 56e96f413de90402ab09850b6f0595bb 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/FastStackDynamic.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae0613a18d7ac40a9a347eb3a7f035bf 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/LinkedListIndex.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4764798f782dc41a7836a15d09732df9 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/MultiDictionary.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21bc1423753524404b9f04f6776374b7 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/ReferenceEqualityComparer.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace MoonSharp.Interpreter.DataStructs 4 | { 5 | /// 6 | /// Implementation of IEqualityComparer enforcing reference equality 7 | /// 8 | internal class ReferenceEqualityComparer : IEqualityComparer 9 | { 10 | bool IEqualityComparer.Equals(object x, object y) 11 | { 12 | return object.ReferenceEquals(x, y); 13 | } 14 | 15 | int IEqualityComparer.GetHashCode(object obj) 16 | { 17 | return obj.GetHashCode(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/ReferenceEqualityComparer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a6c35b07dca764f3c84a55b226e566d9 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataStructs/Slice.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c3b76552db4154323bf03ab9a17c9726 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f7715f68bc084ebea28cfa9651c5e1a 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/CallbackArguments.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0cb95a447d5e4c3fa38eac099c683f7 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/CallbackFunction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 06332ea2b09864a55b347cf90f8c356a 3 | timeCreated: 1476432875 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/Closure.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1376e6ba9bb8f48d6b90e2cc221c1688 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/Coroutine.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17cc8db8f75a445b98b2dadb6b57fad9 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/CoroutineState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 302b7cccdc563441aa02f713b8499dd5 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/DataType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e69902df68e94fb4a5045ec29223fbe 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/DynValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fb946bcf860604e7a80e5f6de7ba52b9 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/IScriptPrivateResource.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3a91440692a5f477cbbcda0519a017e2 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/RefIdObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c70741410e27f4d988d264b28542f906 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/ScriptFunctionDelegate.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e8ceff9083490405a894c3449e6ba298 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRef.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58b27c094997047ae9928bf5a12300ec 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRefType.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter 3 | { 4 | /// 5 | /// Enumeration of the types of SymbolRef 6 | /// 7 | public enum SymbolRefType 8 | { 9 | /// 10 | /// The symbol ref of a local variable 11 | /// 12 | Local, 13 | /// 14 | /// The symbol ref of an upvalue variable 15 | /// 16 | Upvalue, 17 | /// 18 | /// The symbol ref of a global variable 19 | /// 20 | Global, 21 | /// 22 | /// The symbol ref of the global environment 23 | /// 24 | DefaultEnv, 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/SymbolRefType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3be185a345f9749c89fabf1ebbc303b3 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/Table.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 292c9066bc68e43159ce78722a01c6ad 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/TablePair.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1beadb21e231f4d6891d4d7beb1af735 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/TailCallData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 31dfb37b59f214af2970db3e9221e434 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/TypeValidationFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bbc6163822d6143888f051df856e46fc 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/UserData.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 03de1779812bd4d91ad1a727814c4b44 3 | timeCreated: 1476432875 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/WellKnownSymbols.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter 3 | { 4 | /// 5 | /// Constants of well known "symbols" in the MoonSharp grammar 6 | /// 7 | public static class WellKnownSymbols 8 | { 9 | /// 10 | /// The variadic argument symbol ("...") 11 | /// 12 | public const string VARARGS = "..."; 13 | 14 | /// 15 | /// The environment symbol ("_ENV") 16 | /// 17 | public const string ENV = "_ENV"; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/WellKnownSymbols.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e13b2437cd7bb41ffbc4dc15747f72b4 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/YieldRequest.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter 3 | { 4 | /// 5 | /// Class wrapping a request to yield a coroutine 6 | /// 7 | public class YieldRequest 8 | { 9 | /// 10 | /// The return values of the coroutine 11 | /// 12 | public DynValue[] ReturnValues; 13 | 14 | /// 15 | /// Gets or sets a value indicating whether this is a forced yield. 16 | /// 17 | public bool Forced { get; internal set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/DataTypes/YieldRequest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46a92da4c9cb74156b884a2747c47d18 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 49374a2936ec745ae9772ac472ba5a68 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/DebugService.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 379514bc3987a421bbe8212078c44357 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/DebuggerAction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e8c0efc458574d55b100345b94437a4 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/DebuggerCaps.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 04d9ee740c4e143d380226cbe30c764d 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/IDebugger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b71f3121415ae4a53b982a2d4d5dfa52 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/SourceCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e0338b248bf246018c51f627e19316d 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/SourceRef.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c5d1e04c4f0624d3992544d4cd95f0ca 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/WatchItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4994c0c84e6a4db6be8bc3e5f0e5eee 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Debugging/WatchType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 860273ba9b80a4a1593d49aa6f635dc5 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b5a8e9e7757242b6a6ee001fff1b7bb 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3459463391c5b44c2887e430b71fe6ad 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounterType.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Diagnostics 3 | { 4 | /// 5 | /// Enumeration of unit of measures of the performance counters 6 | /// 7 | public enum PerformanceCounterType 8 | { 9 | /// 10 | /// The performance counter is specified in bytes (of memory) 11 | /// 12 | MemoryBytes, 13 | /// 14 | /// The performance counter is specified in milliseconds 15 | /// 16 | TimeMilliseconds, 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounterType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 20c8c649dc2fa4dafaee21558a89e22b 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8b3cdd8c40a894f9eb42641818d1dcd8 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/DummyPerformanceStopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a704cc3c74346473b982177587e0a5d6 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/GlobalPerformanceStopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d577d45b204d44d6e83f9b9b9aa87b85 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/IPerformanceStopwatch.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter.Diagnostics.PerformanceCounters 4 | { 5 | internal interface IPerformanceStopwatch 6 | { 7 | IDisposable Start(); 8 | PerformanceResult GetResult(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/IPerformanceStopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5d40047edee4d41299107f0971437a01 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceCounters/PerformanceStopwatch.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9412c984a07ac419ebfe125e10587369 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceResult.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4a35566b08a4648eb8fc450a2f474ab5 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Diagnostics/PerformanceStatistics.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4da67d6c3268944d1b61e900c6ee03c6 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ab6c9254365404ee291f5e483cdcc013 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/DynamicExpressionException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 02ae9f92c5d814bddb79d2d408445528 3 | timeCreated: 1476432875 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/InternalErrorException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter 4 | { 5 | /// 6 | /// Exception thrown when an inconsistent state is reached in the interpreter 7 | /// 8 | #if !(PCL || ((!UNITY_EDITOR) && (ENABLE_DOTNET)) || NETFX_CORE) 9 | [Serializable] 10 | #endif 11 | public class InternalErrorException : InterpreterException 12 | { 13 | internal InternalErrorException(string message) 14 | : base(message) 15 | { 16 | 17 | } 18 | 19 | internal InternalErrorException(string format, params object[] args) 20 | : base(format, args) 21 | { 22 | 23 | } 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/InternalErrorException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13de1d70141a34d4b8bf573b8e34141e 3 | timeCreated: 1476432876 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/InterpreterException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a33571f2cc4394cbdbc9c36a6169ab2b 3 | timeCreated: 1476432885 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/ScriptRuntimeException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad0eda6e2c434e57bb9a0f0e734f25b 3 | timeCreated: 1476432880 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Errors/SyntaxErrorException.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b67a9ceda4da4d3db59ddd83f429de0 3 | timeCreated: 1476432879 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2edd8922123614d8f8adb17141acc4c7 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/DynamicExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ab0d868f03964a7388078a35f3efc96 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/InstructionFieldUsage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c04c0f8c4300420cbff782f16d58ceb 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 820a29f48bbed4387be744ba4987898e 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dbaced08cc4ed4cd1a9f03e23721587e 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScopeBlock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0b791e8fa773646c59cafb0c3d25de14 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/BuildTimeScopeFrame.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 358f799740da74110b5e8484d5e44f8b 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/ClosureContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72b8addb6dc01451c9f00b9e3fa6e99c 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/IClosureBuilder.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Execution 3 | { 4 | internal interface IClosureBuilder 5 | { 6 | SymbolRef CreateUpvalue(BuildTimeScope scope, SymbolRef symbol); 7 | 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/IClosureBuilder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2aa6722808ba44d63ae56df721463389 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/LoopTracker.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.DataStructs; 2 | using MoonSharp.Interpreter.Execution.VM; 3 | 4 | namespace MoonSharp.Interpreter.Execution 5 | { 6 | interface ILoop 7 | { 8 | void CompileBreak(ByteCode bc); 9 | bool IsBoundary(); 10 | } 11 | 12 | 13 | internal class LoopTracker 14 | { 15 | public FastStack Loops = new FastStack(16384); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/LoopTracker.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c68a60d7d69aa43a0b61e842816f8628 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeBlock.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter.Execution 4 | { 5 | internal class RuntimeScopeBlock 6 | { 7 | public int From { get; internal set; } 8 | public int To { get; internal set; } 9 | public int ToInclusive { get; internal set; } 10 | 11 | public override string ToString() 12 | { 13 | return String.Format("ScopeBlock : {0} -> {1} --> {2}", From, To, ToInclusive); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeBlock.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7ad49968dc9f47e2b9659c891f4ce64 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeFrame.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace MoonSharp.Interpreter.Execution 4 | { 5 | internal class RuntimeScopeFrame 6 | { 7 | public List DebugSymbols { get; private set; } 8 | public int Count { get { return DebugSymbols.Count; } } 9 | public int ToFirstBlock { get; internal set; } 10 | 11 | public RuntimeScopeFrame() 12 | { 13 | DebugSymbols = new List(); 14 | } 15 | 16 | public override string ToString() 17 | { 18 | return string.Format("ScopeFrame : #{0}", Count); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/Scopes/RuntimeScopeFrame.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 326d78bb223bf4da9ab216b6e6dca845 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptExecutionContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e996c955797e0411581fa95c1a6292f4 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptLoadingContext.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.Debugging; 2 | using MoonSharp.Interpreter.Tree; 3 | 4 | namespace MoonSharp.Interpreter.Execution 5 | { 6 | class ScriptLoadingContext 7 | { 8 | public Script Script { get; private set; } 9 | public BuildTimeScope Scope { get; set; } 10 | public SourceCode Source { get; set; } 11 | public bool Anonymous { get; set; } 12 | public bool IsDynamicExpression { get; set; } 13 | public Lexer Lexer { get; set; } 14 | 15 | public ScriptLoadingContext(Script s) 16 | { 17 | Script = s; 18 | } 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/ScriptLoadingContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e91439430f62045af8f2ba3ac7cc22ac 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 60ef6708e89cb4c06acfe44b4da24e92 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ByteCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 69f30676f2c1f43129e1951bcf1fbb78 3 | timeCreated: 1476432882 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItem.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.Debugging; 2 | 3 | namespace MoonSharp.Interpreter.Execution.VM 4 | { 5 | internal class CallStackItem 6 | { 7 | public int Debug_EntryPoint; 8 | public SymbolRef[] Debug_Symbols; 9 | 10 | public SourceRef CallingSourceRef; 11 | 12 | public CallbackFunction ClrFunction; 13 | public CallbackFunction Continuation; 14 | public CallbackFunction ErrorHandler; 15 | public DynValue ErrorHandlerBeforeUnwind; 16 | 17 | public int BasePointer; 18 | public int ReturnAddress; 19 | public DynValue[] LocalScope; 20 | public ClosureContext ClosureScope; 21 | 22 | public CallStackItemFlags Flags; 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b0ca8870651834b14b0d156d519c4fd5 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItemFlags.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter.Execution.VM 4 | { 5 | [Flags] 6 | internal enum CallStackItemFlags 7 | { 8 | None = 0, 9 | 10 | EntryPoint = 1, 11 | ResumeEntryPoint = 3, 12 | CallEntryPoint = 5, 13 | 14 | TailCall = 0x10, 15 | MethodCall = 0x20, 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/CallStackItemFlags.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 878e867c5978449e69be8ab4ea0dcfd3 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ExecutionState.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.DataStructs; 2 | 3 | namespace MoonSharp.Interpreter.Execution.VM 4 | { 5 | internal sealed class ExecutionState 6 | { 7 | public FastStack ValueStack = new FastStack(131072); 8 | public FastStack ExecutionStack = new FastStack(131072); 9 | public int InstructionPtr = 0; 10 | public CoroutineState State = CoroutineState.NotStarted; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/ExecutionState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d70c5c3749f0b41f483627ce2739c3a9 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Instruction.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6ceba5e09ced4424b381ee3ecdad9d7 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 662d815c0bd354682b108a365efa53e1 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCodeMetadataType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace MoonSharp.Interpreter.Execution.VM 7 | { 8 | public enum OpCodeMetadataType 9 | { 10 | ChunkEntrypoint, 11 | FunctionEntrypoint, 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/OpCodeMetadataType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 12ca7d7e7076c4ba4b4b00de453dc302 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad53e8811d85343429a2bc712086ae13 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/DebugContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ff385e31e89d24d64857ab6853481c94 3 | timeCreated: 1475786658 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ba54b0d11328c46bca41774da91778ac 3 | timeCreated: 1476432885 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_BinaryDump.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 77aed18c39bbf4622b4f89b55462f9fe 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Coroutines.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aaa97e004216b41329c5edcecff9dd06 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Debugger.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5f96a834c0285427ca58ccf3ab55f375 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Errors.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2c4f89d27a6dc4f6c9b4b047b14ad0ae 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_IExecutionContext.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68c018ee0303f4b96a1c6f40d04dcff7 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_InstructionLoop.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aac163d6eae4e482d9cf0a8228d9c478 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_Scope.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 844ac2c7bb2c44b2984dc9a12fc56249 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Execution/VM/Processor/Processor_UtilityFunctions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 206de72702bb94beabc11fba6fdd4909 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/IO.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e410e3c8213d94c479ac64c761bf27ad 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/IO/BinDumpBinaryReader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9630ca7af0f3d48619d58504f1dbb6b3 3 | timeCreated: 1476114345 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/IO/BinDumpBinaryWriter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ca91469c26113477bb1e415a258455a1 3 | timeCreated: 1476114345 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/IO/UndisposableStream.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47bb89da31361462e9af8e6d1a095dba 3 | timeCreated: 1476432881 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dea8f20f6c57d4199afcb08c5507266b 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fcaef8dbe6c534df48286583c9064457 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHiddenAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter 4 | { 5 | /// 6 | /// Forces a class member visibility to scripts. Can be used to hide public members. Equivalent to MoonSharpVisible(false). 7 | /// 8 | [AttributeUsage(AttributeTargets.Method | AttributeTargets.Property | AttributeTargets.Field 9 | | AttributeTargets.Constructor | AttributeTargets.Event, Inherited = true, AllowMultiple = false)] 10 | public sealed class MoonSharpHiddenAttribute : Attribute 11 | { 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHiddenAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f197b11750ee4cb5a0a99530134ac4d 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpHideMemberAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9324d060638ed4b6fbd5c758f73a7860 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpPropertyAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c6bd97fe737d342759d142ccf0f4b9cd 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpUserDataAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0cdbe535e00374a92b3399423847bb6d 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpUserDataMetamethodAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8137a8eb2596340f189b48bf22075d30 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Attributes/MoonSharpVisibleAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f68fd7d7efa94e8797afbe18c9611ff 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2fff6b69649c5489a8a455974eef0d17 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/DispatchingUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80f6722db3448418ca54601519f9ada3 3 | timeCreated: 1476432883 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f537e8782afd64f3cb92fde721e22630 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOptimizableDescriptor.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Interop.BasicDescriptors 3 | { 4 | /// 5 | /// Interface for descriptors of any kind which support optimizations of their implementation according to InteropAccessMode 6 | /// modes. This should seldom - if ever - be implemented in user code. 7 | /// 8 | public interface IOptimizableDescriptor 9 | { 10 | /// 11 | /// Called by standard descriptors when background optimization or preoptimization needs to be performed. 12 | /// 13 | void Optimize(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOptimizableDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89ddfcabad76c4c069ffb6bf5a0c72f0 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/IOverloadableMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 472ef7b45723a40b3be9a09a1956855d 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/MemberDescriptorAccess.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MoonSharp.Interpreter.Interop.BasicDescriptors 4 | { 5 | /// 6 | /// Permissions for members access 7 | /// 8 | [Flags] 9 | public enum MemberDescriptorAccess 10 | { 11 | /// 12 | /// The member can be read from 13 | /// 14 | CanRead = 1, 15 | /// 16 | /// The member can be written to 17 | /// 18 | CanWrite = 2, 19 | /// 20 | /// The can be invoked 21 | /// 22 | CanExecute = 4 23 | } 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | } 32 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/MemberDescriptorAccess.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98dc2ad5966d441eabeb7b6d3caa06c0 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/BasicDescriptors/ParameterDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bfdea66115b9243f7a6d6ff5f668ca12 3 | timeCreated: 1476432886 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0e1eef8f70a324da28ea652a0cfe07a5 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/ClrToScriptConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8987bd245f18a47329890d8e91c3201e 3 | timeCreated: 1476432883 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/NumericConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2917a412c40884d278878fc20d4489e4 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/ScriptToClrConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1ab7d32bef2374608a4029d5dc7d6d0f 3 | timeCreated: 1476432877 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/StringConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bc8e3e17185184a2dbc2b6f6b4a6ab6b 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/Converters/TableConversions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2cc8ba4595c94d9088fb3984297bb61 3 | timeCreated: 1476432886 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/CustomConvertersCollection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5fbaa0e2934334bdaa46819569766141 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/DescriptorHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bae8c1686637b4ac79638fb285f37b31 3 | timeCreated: 1476432886 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IGeneratorUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f7c9c3c7e52b445aa477098fba7292b 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5125e07adbc5b4d03a354736ba7d3d5b 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01c69b26b560a4e44b9f58d7828c5950 3 | timeCreated: 1475786652 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IUserDataType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6e50fc9f2a8442a9b64c98c5d5bfefa 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IWireableDescriptor.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Interop.BasicDescriptors 3 | { 4 | /// 5 | /// Interface for descriptors with the capability of being serialized 6 | /// for later hardwiring. 7 | /// 8 | public interface IWireableDescriptor 9 | { 10 | /// 11 | /// Prepares the descriptor for hard-wiring. 12 | /// The descriptor fills the passed table with all the needed data for hardwire generators to generate the appropriate code. 13 | /// 14 | /// The table to be filled 15 | void PrepareForWiring(Table t); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/IWireableDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ed0502d7d281c4d02b2a73333e63b2e8 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/InteropAccessMode.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddbbc4d0ce9bf46e4b917c7822227382 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/InteropRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: afe3b2b1b8cd14f27a728db1c45eedee 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37c3fef251200440e8f39e1ce26298bc 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/CharPtr.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f2985effb32c74d16bb8c4fbbc607c19 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d6e9b8cd186543aca616a6ab3ee89d7 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaBase_CLib.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 922b575dd83cc46739a020c8abe4849c 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaLBuffer.cs: -------------------------------------------------------------------------------- 1 | // Disable warnings about XML documentation 2 | #pragma warning disable 1591 3 | 4 | using System.Text; 5 | 6 | namespace MoonSharp.Interpreter.Interop.LuaStateInterop 7 | { 8 | public class LuaLBuffer 9 | { 10 | public StringBuilder StringBuilder { get; private set; } 11 | public LuaState LuaState { get; private set; } 12 | 13 | public LuaLBuffer(LuaState l) 14 | { 15 | StringBuilder = new StringBuilder(); 16 | LuaState = l; 17 | } 18 | 19 | 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaLBuffer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ced9744069c3426897ab8ab28f78e19 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/LuaState.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: affc833f5facd456cb7f3c1c877e016b 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/LuaStateInterop/Tools.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7fe8355bb2687470dabdf9f53cebcb53 3 | timeCreated: 1476299274 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d430a004bd11940fd86af1069ddb1047 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData/AnonWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: db64414b452e5425d9d5cd1f1ca701bd 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/PredefinedUserData/EnumerableWrapper.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f476b461a5ed4435db657147a9c73395 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/PropertyTableAssigner.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29adf7e98b14849d3bf021d9978d0d8b 3 | timeCreated: 1476432879 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80ab0075d11a3452d85ef5f5c0c1429d 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects/DelegateProxyFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8a78a604367d5437c8bc7738a353e330 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/ProxyObjects/IProxyFactory.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e66b6f4653072444789b4a589c6c2a3a 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/ReflectionSpecialNames.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29cafe9c63e8f4065b1ac596fd1fd9aa 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c7488f095cc83413fab5d27e801a6f7b 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/AutomaticRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e4097ed8fbf294e999f9a29e89df8443 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/DefaultRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2265b5b2975b4d0ab2200362101da9e 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/IRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 90c78875ddfdf453aacf15d5c1bddf77 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/RegistrationPolicies/PermanentRegistrationPolicy.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3158077890b1545c0b603ef17da60db1 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 788e7624b69a54e90b7799e9950d6c05 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/AutoDescribingUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 352d20f0b03db4824871ccc4ff8c616a 3 | timeCreated: 1476432880 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/CompositeUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f5dd2e97a42ab4fa2a71abc2d46f59a4 3 | timeCreated: 1476432888 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/EventFacade.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 59883d2da472c41518f0226b0304586d 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2dd94b90014ad4b27833a0378cb1c198 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/DefaultValue.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Interop.StandardDescriptors.HardwiredDescriptors 3 | { 4 | public sealed class DefaultValue 5 | { 6 | public static readonly DefaultValue Instance = new DefaultValue(); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/DefaultValue.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4488f26dceb7a4be786386e8fd64cf9d 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9e219ae3995f14bca923411ed343be4c 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredMethodMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 509d3c7494a174d159037c1ce772f139 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredUserDataDescriptor.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using MoonSharp.Interpreter.Interop.BasicDescriptors; 3 | 4 | namespace MoonSharp.Interpreter.Interop.StandardDescriptors.HardwiredDescriptors 5 | { 6 | public abstract class HardwiredUserDataDescriptor : DispatchingUserDataDescriptor 7 | { 8 | protected HardwiredUserDataDescriptor(Type T) : 9 | base(T, "::hardwired::" + T.Name) 10 | { 11 | 12 | } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/HardwiredDescriptors/HardwiredUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e68a6f21a26414d3593a07cf99936209 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 687121c5bf0774587b701926f24663f1 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/ArrayMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16ace6782aaff42ef925471de4da3385 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/DynValueMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c886654d00dad4d1b9c3f337bb813cc0 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/FunctionMemberDescriptorBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89a6426ea6fe947ae99733cb677468d2 3 | timeCreated: 1476432883 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/MemberDescriptors/ObjectCallbackMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: caf88b714be7b4cf39d668ad94a2cdbf 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ProxyUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1dfd27bda419d4d66ac0202bd5129321 3 | timeCreated: 1476432878 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ade967f20823d48baa0ac5d6598f0cec 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/EventMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 459fecf3c2e24493dbb3343468794c2e 3 | timeCreated: 1476432881 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/FieldMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4e7bfec90fd646a39c733281c5c9a11 3 | timeCreated: 1476432886 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/MethodMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 68afe79e1ad244daeabefece087d3ba8 3 | timeCreated: 1476432882 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/OverloadedMethodMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 855e4d30c04db49fcaeb34cbaf67ebac 3 | timeCreated: 1476432883 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/PropertyMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1751047691c3846a7ade184baf0c247c 3 | timeCreated: 1476432877 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/ReflectionMemberDescriptors/ValueTypeDefaultCtorMemberDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a0c456f1fb2c24452a3bcbb4d5e989db 3 | timeCreated: 1476432885 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardEnumUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3ad85406d968d4e16b8f8bbb261c515e 3 | timeCreated: 1476432880 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardGenericsUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 89ded8cbedd28423587da705e814718b 3 | timeCreated: 1476432884 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/StandardDescriptors/StandardUserDataDescriptor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 29d5118b685fd415ead4294ee7d93b79 3 | timeCreated: 1476432879 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataMemberType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace MoonSharp.Interpreter.Interop 7 | { 8 | public enum UserDataMemberType 9 | { 10 | Constructor, 11 | Method, 12 | Property, 13 | Field, 14 | Event 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataMemberType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4e7d6d5b090694ba99789897e23621e1 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 38f3c44fe0e4340779e1f37669bbe026 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries/ExtensionMethodsRegistry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0751e8a68a8854239b86b7412fe9b9a6 3 | timeCreated: 1476432876 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Interop/UserDataRegistries/TypeDescriptorRegistry.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1cb8d3a3cea1d4c42841978ca26ff333 3 | timeCreated: 1476432877 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/LinqHelpers.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b04c0dc1a035c460fa89f603876c6db9 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b09180aac6c874f8c8858be2de83e0aa 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/EmbeddedResourcesScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe66f88e60a984221b3f9d6e2e270c96 3 | timeCreated: 1476432894 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/FileSystemScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5265cb278419c4704996e50cd50d1da2 3 | timeCreated: 1476432882 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/IScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c399d96b868674b5eaa2ad00e443dc9d 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/InvalidScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 920af4d96074142d1bc72d3d5a672d20 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/ScriptLoaderBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: af35d862d07134a6ca74cd42b63c1794 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Loaders/UnityAssetsScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 47df7bd1ab9d64724a8f364747e1f599 3 | timeCreated: 1476432881 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21c21ae128168455cbf6fa358cd20670 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/CoreModules.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ea0b736032491445383db1568b651959 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/ModuleRegister.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36c2ca3cd92354d37a71219519c65c84 3 | timeCreated: 1476452538 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 647ec1caf30824863bf83c0c674b64b7 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleConstantAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 801d444ded66b4a45b100c59c373243b 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Modules/MoonSharpModuleMethodAttribute.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 616cf146f24304ea9a82d1f9178a7268 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/NameSpace_XmlHelp.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce2e5bd5d0b2b49fe99dbc8fc4aec9bb 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Options.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21cfe29c05df44124bb1eb4c1321f2a2 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Options/ColonOperatorBehaviour.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10dd09e5e726b415bb24bc6eada8c8ff 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ae8c935142dcf48aa99686d7db177e4e 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/DotNetCorePlatformAccessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 16eaeaa203bc1df4eb279ad911bba358 3 | timeCreated: 1476432877 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/IPlatformAccessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 359de24f05b4c4d97a383e19fd739ca7 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/LimitedPlatformAccessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7b62203e94e404916af303e96d55e003 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/PlatformAccessorBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 58597ecc9be4e445d905f52523ca4e8e 3 | timeCreated: 1476438094 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/PlatformAutoDetector.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6155c702b863d4de6b65e3661d34dc44 3 | timeCreated: 1476432882 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardFileType.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Platforms 3 | { 4 | /// 5 | /// Enumeration of standard file handles 6 | /// 7 | public enum StandardFileType 8 | { 9 | /// 10 | /// Standard Input 11 | /// 12 | StdIn, 13 | /// 14 | /// Standard Output 15 | /// 16 | StdOut, 17 | /// 18 | /// Standard Error Output 19 | /// 20 | StdErr 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardFileType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7636d0d07fa514ae584b49d65025b600 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Platforms/StandardPlatformAccessor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f4a9977fe0bfc48959d1b05c17c8549f 3 | timeCreated: 1476432887 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/REPL.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36c128cb6b2ae4291aa464c6b0549674 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/REPL/ReplHistoryNavigator.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b54be6e9e41364e02968550fb2cf7c4d 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/REPL/ReplInterpreter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cf481bf6781294381b77d6aadecbd712 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/REPL/ReplInterpreterScriptLoader.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c6efcf1ce8064e5087b1afbbd9d592e 3 | timeCreated: 1476299275 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Script.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6af9aaf13dfaa46648711a12b5f9abe0 3 | timeCreated: 1476452567 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/ScriptGlobalOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 019755db0735e4261a6d88f4cc170256 3 | timeCreated: 1475786652 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/ScriptOptions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76e1b875ac6f54131b71043d3a9e1c0b 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 91bac364723d8471ab99d29f64eb6b0e 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/Json.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bab288299fa6645b5914160c1e123c29 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/Json/JsonNull.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: eb11cd56d51474a3a9ee3d63f52c7e3d 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/Json/JsonTableConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e090b4783b83443f7959adaeebbd831c 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/ObjectValueConverter.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 99653e9435d7e458aa2f9b83455d0a61 3 | timeCreated: 1476432884 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Serialization/SerializationExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0f17c5a72ff1c431380cf0baea989b83 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1350f7d7e684046a48b64bc186bc85fe 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expression_.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 917ffb77be09c4bc3ad9735a663b7de8 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ef6cb9e63cf584d5093a94897811a0eb 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/AdjustmentExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c494a9ff07b4f47f69bf840276bc16c7 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/BinaryOperatorExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1e429a1e253ff48d494ae2f4082bf9e5 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/DynamicExprExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2ad167454775547d2b876de4ba0fd483 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/ExprListExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: dd8ca3d30a17e4eaf8b77c38a66ba301 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/FunctionCallExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3fa461df57eb84d5f9427189139597c9 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/FunctionDefinitionExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 818d56204214b495cac1759ba69e62cc 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/IndexExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ddb1f940605694b16a3484b5ff7efdfb 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/LiteralExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b79e917718e94fc2ad0c27697cb8f72 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/SymbolRefExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f336cd46dea12403c80a301cb514a829 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/TableConstructor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 26b87a1b8116245ab9e9c873ab2c815f 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Expressions/UnaryOperatorExpression.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cea61ff404d734620ac74f0d77cbf723 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Fast_Interface.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d7f541eb890e3467ea8ceddd017638ea 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Fast_Interface/Loader_Fast.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d2b48e341b32244b7b804e5c678d43e8 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/IVariable.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace MoonSharp.Interpreter.Tree 3 | { 4 | interface IVariable 5 | { 6 | void CompileAssignment(Execution.VM.ByteCode bc, int stackofs, int tupleidx); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/IVariable.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7f8fab7b547fe49d3a6c39d5bf1aa16d 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0fc9e851c11cb4ee7a4813c8ea533745 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/Lexer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36f7acbfc89a742ae98ca7798c9fa46c 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/LexerUtils.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cfd39fdc4578b46bd94fbec6ef1d52c6 3 | timeCreated: 1476432886 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/Token.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 28db96375f67f40a0977eb0e231b87df 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Lexer/TokenType.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6951b5c7d34424ebc93855f3a8e6abd0 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Loop.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b96a843097755462eaa09a5418609431 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/NodeBase.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1f93e310164b44950948a1ff5c698f2f 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e115ec17228964ee5854b305fb19784c 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5978d7a5435614f438554bd7a238eb78 3 | folderAsset: yes 4 | timeCreated: 1475786652 5 | licenseType: Store 6 | DefaultImporter: 7 | userData: 8 | assetBundleName: 9 | assetBundleVariant: 10 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/AssignmentStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 984d08ac2d2c649f0937d1a8e239ef6a 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/BreakStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d931c98bfed744a40a11ce008f739485 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ChunkStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 467e042a564454047a5215038dce40d6 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/CompositeStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e1daf24800e444e98cb1fbd9d7853b2 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/EmptyStatement.cs: -------------------------------------------------------------------------------- 1 | using MoonSharp.Interpreter.Execution; 2 | 3 | namespace MoonSharp.Interpreter.Tree.Statements 4 | { 5 | class EmptyStatement : Statement 6 | { 7 | public EmptyStatement(ScriptLoadingContext lcontext) 8 | : base(lcontext) 9 | { 10 | } 11 | 12 | 13 | public override void Compile(Execution.VM.ByteCode bc) 14 | { 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/EmptyStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1bb5f717a1d224a8984924a6567831c8 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ForEachLoopStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 42fdf5ae14c55483cbc6624a805b54d6 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ForLoopStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b8997b2af29c946b5831782aa877fe8c 3 | timeCreated: 1475786655 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/FunctionCallStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 01dd56b964b0444d9be30c32362e0f12 3 | timeCreated: 1475786652 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/FunctionDefinitionStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2eaf1f1a72396485d8ab026632b4984f 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/GotoStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3292cfca00390432290faa3fa7f8e387 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/IfStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d806fb47926040f89e9016b4c1e0e11 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/LabelStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6b59b6847c944bbcbff9891ed73131b 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/RepeatStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 53c80ada0f4af4f728ba10d35256441d 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ReturnStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e6dd3b70f20ab4e84b11d4e2d91268a6 3 | timeCreated: 1475786656 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/ScopeBlockStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 908e6665aa8a94114b90c8061da39a21 3 | timeCreated: 1475786654 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/MoonSharp/Interpreter/Tree/Statements/WhileStatement.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3857a0c186ff6400896fe8d16e00c457 3 | timeCreated: 1475786653 4 | licenseType: Store 5 | MonoImporter: 6 | serializedVersion: 2 7 | defaultReferences: [] 8 | executionOrder: 0 9 | icon: {instanceID: 0} 10 | userData: 11 | assetBundleName: 12 | assetBundleVariant: 13 | -------------------------------------------------------------------------------- /Assets/Plugins/lua52.bundle/Contents.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 504bfe073ccb34601ab5469937be156b 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/lua52.bundle/Contents/Info.plist.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ce9b838cef66144f198fb1fbdb7f5f16 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/lua52.bundle/Contents/MacOS.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d4f8eea8fb70c45e3a0d41ed837e85fc 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/lua52.bundle/Contents/MacOS/lua52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/Plugins/lua52.bundle/Contents/MacOS/lua52 -------------------------------------------------------------------------------- /Assets/Plugins/lua52.bundle/Contents/MacOS/lua52.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/Plugins/lua52.bundle/Contents/MacOS/lua52.dylib -------------------------------------------------------------------------------- /Assets/Plugins/lua52.bundle/Contents/MacOS/lua52.dylib.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c7366ba279ef4cba8533924611804dc 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/lua52.bundle/Contents/MacOS/lua52.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 54c64f46c53864fc6acd702dded906da 3 | DefaultImporter: 4 | userData: 5 | -------------------------------------------------------------------------------- /Assets/Plugins/pngcs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 98851c6748f59504d93568c3bb0f9480 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Plugins/pngcs/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/Plugins/pngcs/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Assets/Plugins/pngcs/Pngcs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/Plugins/pngcs/Pngcs.dll -------------------------------------------------------------------------------- /Assets/Plugins/x86.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a3578e542d3b86a4494051b83841b261 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/x86/lua52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/Plugins/x86/lua52.dll -------------------------------------------------------------------------------- /Assets/Plugins/x86_64.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 18cbf6fd3574b564ca035125b3bfbfc4 3 | folderAsset: yes 4 | DefaultImporter: 5 | userData: 6 | -------------------------------------------------------------------------------- /Assets/Plugins/x86_64/lua52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/Plugins/x86_64/lua52.dll -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 131a6b21c8605f84396be9f6751fb6e3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/Scenes/SampleScene.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2cda990e2423bbf4892e6590ba056729 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/TouchButton.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | using TsFreddie.Pico8; 5 | 6 | public class TouchButton : MonoBehaviour { 7 | public PicoEmulator.Buttons button; 8 | 9 | void Start () { 10 | 11 | } 12 | 13 | void Update () { 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Assets/TouchButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fdaeab69024ff404bba2d959a83051a8 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/colorpalette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/colorpalette.png -------------------------------------------------------------------------------- /Assets/controller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TsFreddie/unity-pico-8-emulator/462ff5878e88de8f20686012d1bcc2c4f59abbc5/Assets/controller.png -------------------------------------------------------------------------------- /Assets/test.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3f7de22ca1ffeda42a8087ff86345f27 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | m_Volume: 1 7 | Rolloff Scale: 1 8 | Doppler Factor: 1 9 | Default Speaker Mode: 2 10 | m_SampleRate: 0 11 | m_DSPBufferSize: 1024 12 | m_VirtualVoiceCount: 512 13 | m_RealVoiceCount: 32 14 | m_SpatializerPlugin: 15 | m_AmbisonicDecoderPlugin: 16 | m_DisableAudio: 0 17 | m_VirtualizeEffects: 1 18 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/test.unity 10 | guid: 3f7de22ca1ffeda42a8087ff86345f27 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: 7 | - type: 8 | m_NativeTypeID: 20 9 | m_ManagedTypePPtr: {fileID: 0} 10 | m_ManagedTypeFallback: 11 | defaultPresets: 12 | - m_Preset: {fileID: 2655988077585873504, guid: bfcfc320427f8224bbb7a96f3d3aebad, 13 | type: 2} 14 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.2.2f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - Control 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.1 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WIP 2 | --------------------------------------------------------------------------------