├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── Resources ├── ButtonIcon_40x.png ├── Icon128.png └── Logo.png ├── Script ├── CodeAnalysis │ ├── CodeAnalysis.cs │ └── CodeAnalysis.csproj ├── SourceGenerator │ ├── AnalyzerReleases.Unshipped.md │ ├── SourceGenerator.csproj │ └── UnrealTypeSourceGenerator.cs ├── UE │ ├── CoreUObject │ │ ├── Class.cs │ │ ├── DataTableFunctionLibrary.cs │ │ ├── EnhancedInputComponent.cs │ │ ├── FActorSpawnParameters.cs │ │ ├── FAnsiString.cs │ │ ├── FName.cs │ │ ├── FString.cs │ │ ├── FText.cs │ │ ├── FUtf8String.cs │ │ ├── IGarbageCollectionHandle.cs │ │ ├── IStaticClass.cs │ │ ├── IStaticStruct.cs │ │ ├── InputComponent.cs │ │ ├── Object.cs │ │ ├── OverrideAttribute.cs │ │ ├── PathNameAttribute.cs │ │ ├── SynchronizationContext.cs │ │ ├── TArray.cs │ │ ├── TFieldPath.cs │ │ ├── TLazyObjectPtr.cs │ │ ├── TMap.cs │ │ ├── TOptional.cs │ │ ├── TScriptInterface.cs │ │ ├── TSet.cs │ │ ├── TSoftClassPtr.cs │ │ ├── TSoftObjectPtr.cs │ │ ├── TSubclassOf.cs │ │ ├── TWeakObjectPtr.cs │ │ ├── TaskInfo.cs │ │ ├── Unreal.cs │ │ ├── Utils.cs │ │ └── World.cs │ ├── Dynamic │ │ ├── Class │ │ │ ├── AdvancedClassDisplayAttribute.cs │ │ │ ├── AutoCollapseCategoriesAttribute.cs │ │ │ ├── AutoExpandCategoriesAttribute.cs │ │ │ ├── BlueprintSpawnableComponentAttribute.cs │ │ │ ├── ChildCanTickAttribute.cs │ │ │ ├── ChildCannotTickAttribute.cs │ │ │ ├── ClassGroupAttribute.cs │ │ │ ├── CollapseCategoriesAttribute.cs │ │ │ ├── ComponentWrapperClassAttribute.cs │ │ │ ├── ConfigDoNotCheckDefaultsAttribute.cs │ │ │ ├── ConstAttribute.cs │ │ │ ├── CustomConstructorAttribute.cs │ │ │ ├── CustomThunkTemplatesAttribute.cs │ │ │ ├── DebugTreeLeafAttribute.cs │ │ │ ├── DefaultConfigAttribute.cs │ │ │ ├── DefaultToInstancedAttribute.cs │ │ │ ├── DeprecatedAttribute.cs │ │ │ ├── DeprecatedNodeAttribute.cs │ │ │ ├── DontAutoCollapseCategoriesAttribute.cs │ │ │ ├── DontCollapseCategoriesAttribute.cs │ │ │ ├── DontUseGenericSpawnObjectAttribute.cs │ │ │ ├── EarlyAccessPreviewAttribute.cs │ │ │ ├── EditInlineNewAttribute.cs │ │ │ ├── ExposedAsyncProxyAttribute.cs │ │ │ ├── HideCategoriesAttribute.cs │ │ │ ├── HideDropdownAttribute.cs │ │ │ ├── HideFunctionsAttribute.cs │ │ │ ├── IgnoreCategoryKeywordsInSubclassesAttribute.cs │ │ │ ├── IntrinsicAttribute.cs │ │ │ ├── KismetHideOverridesAttribute.cs │ │ │ ├── NotEditInlineNewAttribute.cs │ │ │ ├── NotPlaceableAttribute.cs │ │ │ ├── PerObjectConfigAttribute.cs │ │ │ ├── PrioritizeCategoriesAttribute.cs │ │ │ ├── ProhibitedInterfacesAttribute.cs │ │ │ ├── RestrictedToClassesAttribute.cs │ │ │ ├── ShowCategoriesAttribute.cs │ │ │ ├── ShowWorldContextPinAttribute.cs │ │ │ ├── SparseClassDataTypeAttribute.cs │ │ │ ├── UClassAttribute.cs │ │ │ ├── UsesHierarchyAttribute.cs │ │ │ └── WithinAttribute.cs │ │ ├── Enum │ │ │ ├── BitflagsAttribute.cs │ │ │ ├── UEnumAttribute.cs │ │ │ └── UseEnumValuesAsMaskValuesInEditorAttribute.cs │ │ ├── Function │ │ │ ├── ArrayParamAttribute.cs │ │ │ ├── ArrayParmAttribute.cs │ │ │ ├── ArrayTypeDependentParamsAttribute.cs │ │ │ ├── AutoCreateRefTermAttribute.cs │ │ │ ├── BitmaskAttribute.cs │ │ │ ├── BitmaskEnumAttribute.cs │ │ │ ├── BlueprintAutoCastAttribute.cs │ │ │ ├── BlueprintCosmeticAttribute.cs │ │ │ ├── BlueprintImplementableEventAttribute.cs │ │ │ ├── BlueprintNativeEventAttribute.cs │ │ │ ├── BlueprintProtectedAttribute.cs │ │ │ ├── BlueprintPureAttribute.cs │ │ │ ├── CallInEditorAttribute.cs │ │ │ ├── CallableWithoutWorldContextAttribute.cs │ │ │ ├── ClientAttribute.cs │ │ │ ├── CommutativeAssociativeBinaryOperatorAttribute.cs │ │ │ ├── CompactNodeTitleAttribute.cs │ │ │ ├── CustomStructureParamAttribute.cs │ │ │ ├── CustomThunkAttribute.cs │ │ │ ├── DataTablePinAttribute.cs │ │ │ ├── DefaultToSelfAttribute.cs │ │ │ ├── DeprecatedFunctionAttribute.cs │ │ │ ├── DeterminesOutputTypeAttribute.cs │ │ │ ├── DynamicOutputParamAttribute.cs │ │ │ ├── ExecAttribute.cs │ │ │ ├── ExpandBoolAsExecsAttribute.cs │ │ │ ├── ExpandEnumAsExecsAttribute.cs │ │ │ ├── HideAssetPickerAttribute.cs │ │ │ ├── HidePinAttribute.cs │ │ │ ├── HideSpawnParmsAttribute.cs │ │ │ ├── InternalUseParamAttribute.cs │ │ │ ├── KeywordsAttribute.cs │ │ │ ├── LatentAttribute.cs │ │ │ ├── LatentInfoAttribute.cs │ │ │ ├── MapKeyParamAttribute.cs │ │ │ ├── MapParamAttribute.cs │ │ │ ├── MapValueParamAttribute.cs │ │ │ ├── MaterialParameterCollectionFunctionAttribute.cs │ │ │ ├── NativeBreakFuncAttribute.cs │ │ │ ├── NativeMakeFuncAttribute.cs │ │ │ ├── NetMulticastAttribute.cs │ │ │ ├── NotBlueprintThreadSafeAttribute.cs │ │ │ ├── ReliableAttribute.cs │ │ │ ├── ReturnDisplayNameAttribute.cs │ │ │ ├── ScriptConstantAttribute.cs │ │ │ ├── ScriptConstantHostAttribute.cs │ │ │ ├── ScriptMethodAttribute.cs │ │ │ ├── ScriptMethodSelfReturnAttribute.cs │ │ │ ├── ScriptOperatorAttribute.cs │ │ │ ├── SealedEventAttribute.cs │ │ │ ├── ServerAttribute.cs │ │ │ ├── ServiceRequestAttribute.cs │ │ │ ├── ServiceResponseAttribute.cs │ │ │ ├── SetParamAttribute.cs │ │ │ ├── UFunctionAttribute.cs │ │ │ ├── UnreliableAttribute.cs │ │ │ ├── UnsafeDuringActorConstructionAttribute.cs │ │ │ ├── WithValidationAttribute.cs │ │ │ └── WorldContextAttribute.cs │ │ ├── Generic │ │ │ ├── AbstractAttribute.cs │ │ │ ├── BlueprintAuthorityOnlyAttribute.cs │ │ │ ├── BlueprintCallableAttribute.cs │ │ │ ├── BlueprintGetterAttribute.cs │ │ │ ├── BlueprintInternalUseOnlyAttribute.cs │ │ │ ├── BlueprintSetterAttribute.cs │ │ │ ├── BlueprintThreadSafeAttribute.cs │ │ │ ├── BlueprintTypeAttribute.cs │ │ │ ├── BlueprintableAttribute.cs │ │ │ ├── CategoryAttribute.cs │ │ │ ├── ConfigAttribute.cs │ │ │ ├── ConversionRootAttribute.cs │ │ │ ├── DeprecationMessageAttribute.cs │ │ │ ├── DisplayNameAttribute.cs │ │ │ ├── DocumentationPolicyAttribute.cs │ │ │ ├── EditorConfigAttribute.cs │ │ │ ├── ExperimentalAttribute.cs │ │ │ ├── FieldNotifyAttribute.cs │ │ │ ├── IsBlueprintBaseAttribute.cs │ │ │ ├── LoadBehaviorAttribute.cs │ │ │ ├── MinimalAPIAttribute.cs │ │ │ ├── NoExportAttribute.cs │ │ │ ├── NotBlueprintTypeAttribute.cs │ │ │ ├── NotBlueprintableAttribute.cs │ │ │ ├── ScriptNameAttribute.cs │ │ │ ├── ShortTooltipAttribute.cs │ │ │ ├── ToolTipAttribute.cs │ │ │ └── TransientAttribute.cs │ │ ├── Interface │ │ │ ├── CannotImplementInterfaceInBlueprintAttribute.cs │ │ │ └── UInterfaceAttribute.cs │ │ ├── Property │ │ │ ├── AdvancedDisplayAttribute.cs │ │ │ ├── AllowAbstractAttribute.cs │ │ │ ├── AllowAnyActorAttribute.cs │ │ │ ├── AllowPreserveRatioAttribute.cs │ │ │ ├── AllowPrivateAccessAttribute.cs │ │ │ ├── AllowedClassesAttribute.cs │ │ │ ├── AlwaysAsPinAttribute.cs │ │ │ ├── ArrayClampAttribute.cs │ │ │ ├── AssetBundlesAttribute.cs │ │ │ ├── AssetRegistrySearchableAttribute.cs │ │ │ ├── AttachmentParentAttribute.cs │ │ │ ├── AttachmentSocketNameAttribute.cs │ │ │ ├── BlueprintAssignableAttribute.cs │ │ │ ├── BlueprintBaseOnlyAttribute.cs │ │ │ ├── BlueprintCompilerGeneratedDefaultsAttribute.cs │ │ │ ├── BlueprintReadOnlyAttribute.cs │ │ │ ├── BlueprintReadWriteAttribute.cs │ │ │ ├── ClampMaxAttribute.cs │ │ │ ├── ClampMinAttribute.cs │ │ │ ├── ConfigHierarchyEditableAttribute.cs │ │ │ ├── ContentDirAttribute.cs │ │ │ ├── CustomizePropertyAttribute.cs │ │ │ ├── DefaultSubobjectAttribute.cs │ │ │ ├── DeltaAttribute.cs │ │ │ ├── DeprecatedPropertyAttribute.cs │ │ │ ├── DevelopmentOnlyAttribute.cs │ │ │ ├── DisallowedAssetDataTagsAttribute.cs │ │ │ ├── DisallowedClassesAttribute.cs │ │ │ ├── DisplayAfterAttribute.cs │ │ │ ├── DisplayPriorityAttribute.cs │ │ │ ├── DisplayThumbnailAttribute.cs │ │ │ ├── DuplicateTransientAttribute.cs │ │ │ ├── EditAnywhereAttribute.cs │ │ │ ├── EditConditionAttribute.cs │ │ │ ├── EditConditionHidesAttribute.cs │ │ │ ├── EditDefaultsOnlyAttribute.cs │ │ │ ├── EditFixedOrderAttribute.cs │ │ │ ├── EditFixedSizeAttribute.cs │ │ │ ├── EditInlineAttribute.cs │ │ │ ├── EditInstanceOnlyAttribute.cs │ │ │ ├── ExactClassAttribute.cs │ │ │ ├── ExportAttribute.cs │ │ │ ├── ExposeFunctionCategoriesAttribute.cs │ │ │ ├── ExposeOnSpawnAttribute.cs │ │ │ ├── FilePathFilterAttribute.cs │ │ │ ├── FixedIncrementAttribute.cs │ │ │ ├── ForceShowEngineContentAttribute.cs │ │ │ ├── ForceShowPluginContentAttribute.cs │ │ │ ├── ForceUnitsAttribute.cs │ │ │ ├── GetOptionsAttribute.cs │ │ │ ├── GlobalConfigAttribute.cs │ │ │ ├── HideAlphaChannelAttribute.cs │ │ │ ├── HideInDetailPanelAttribute.cs │ │ │ ├── HideViewOptionsAttribute.cs │ │ │ ├── IgnoreForMemberInitializationTestAttribute.cs │ │ │ ├── InlineEditConditionToggleAttribute.cs │ │ │ ├── InstancedAttribute.cs │ │ │ ├── InterpAttribute.cs │ │ │ ├── InvalidEnumValuesAttribute.cs │ │ │ ├── LatentCallbackTargetAttribute.cs │ │ │ ├── LinearDeltaSensitivityAttribute.cs │ │ │ ├── LocalizedAttribute.cs │ │ │ ├── LongPackageNameAttribute.cs │ │ │ ├── MakeEditWidgetAttribute.cs │ │ │ ├── MakeStructureDefaultValueAttribute.cs │ │ │ ├── MaxLengthAttribute.cs │ │ │ ├── MetaClassAttribute.cs │ │ │ ├── MultiLineAttribute.cs │ │ │ ├── MultipleAttribute.cs │ │ │ ├── MustImplementAttribute.cs │ │ │ ├── NeedsLatentFixupAttribute.cs │ │ │ ├── NeverAsPinAttribute.cs │ │ │ ├── NoClearAttribute.cs │ │ │ ├── NoEditInlineAttribute.cs │ │ │ ├── NoElementDuplicateAttribute.cs │ │ │ ├── NoResetToDefaultAttribute.cs │ │ │ ├── NoSpinboxAttribute.cs │ │ │ ├── NonPIEDuplicateTransientAttribute.cs │ │ │ ├── NonPIETransientAttribute.cs │ │ │ ├── NonTransactionalAttribute.cs │ │ │ ├── NotReplicatedAttribute.cs │ │ │ ├── OnlyPlaceableAttribute.cs │ │ │ ├── OverridingInputPropertyAttribute.cs │ │ │ ├── PasswordFieldAttribute.cs │ │ │ ├── PinHiddenByDefaultAttribute.cs │ │ │ ├── PinShownByDefaultAttribute.cs │ │ │ ├── RelativePathAttribute.cs │ │ │ ├── RelativeToGameContentDirAttribute.cs │ │ │ ├── RelativeToGameDirAttribute.cs │ │ │ ├── ReplicatedAttribute.cs │ │ │ ├── ReplicatedUsingAttribute.cs │ │ │ ├── RequiredAssetDataTagsAttribute.cs │ │ │ ├── RequiredInputAttribute.cs │ │ │ ├── RootComponentAttribute.cs │ │ │ ├── SaveGameAttribute.cs │ │ │ ├── ScriptNoExportAttribute.cs │ │ │ ├── ShowOnlyInnerPropertiesAttribute.cs │ │ │ ├── ShowTreeViewAttribute.cs │ │ │ ├── SimpleDisplayAttribute.cs │ │ │ ├── SkipSerializationAttribute.cs │ │ │ ├── SliderExponentAttribute.cs │ │ │ ├── TextExportTransientAttribute.cs │ │ │ ├── TitlePropertyAttribute.cs │ │ │ ├── UIMaxAttribute.cs │ │ │ ├── UIMinAttribute.cs │ │ │ ├── UPropertyAttribute.cs │ │ │ ├── UnitsAttribute.cs │ │ │ ├── UntrackedAttribute.cs │ │ │ ├── ValidEnumValuesAttribute.cs │ │ │ ├── VisibleAnywhereAttribute.cs │ │ │ ├── VisibleDefaultsOnlyAttribute.cs │ │ │ └── VisibleInstanceOnlyAttribute.cs │ │ └── Struct │ │ │ ├── DisableSplitPinAttribute.cs │ │ │ ├── HasNativeBreakAttribute.cs │ │ │ ├── HasNativeMakeAttribute.cs │ │ │ ├── HiddenByDefaultAttribute.cs │ │ │ └── UStructAttribute.cs │ ├── Library │ │ ├── ClassImplementation.cs │ │ ├── DataTableFunctionLibraryImplementation.cs │ │ ├── EnhancedInputComponentImplementation.cs │ │ ├── FActorSpawnParametersImplementation.cs │ │ ├── FAnsiStringImplementation.cs │ │ ├── FDelegateImplementation.cs │ │ ├── FFunctionImplementation.cs │ │ ├── FMulticastDelegateImplementation.cs │ │ ├── FNameImplementation.cs │ │ ├── FPropertyImplementation.cs │ │ ├── FStringImplementation.cs │ │ ├── FTextImplementation.cs │ │ ├── FUtf8StringImplementation.cs │ │ ├── InputComponentImplementation.cs │ │ ├── LogImplementation.cs │ │ ├── ObjectImplementation.cs │ │ ├── StructImplementation.cs │ │ ├── TArrayImplementation.cs │ │ ├── TLazyObjectPtrImplementation.cs │ │ ├── TMapImplementation.cs │ │ ├── TOptionalImplementation.cs │ │ ├── TScriptInterfaceImplementation.cs │ │ ├── TSetImplementation.cs │ │ ├── TSoftClassPtrImplementation.cs │ │ ├── TSoftObjectPtrImplementation.cs │ │ ├── TSubclassOfImplementation.cs │ │ ├── TWeakObjectPtrImplementation.cs │ │ ├── UnrealImplementation.cs │ │ └── WorldImplementation.cs │ ├── Log │ │ └── Log.cs │ └── Reflection │ │ └── Property │ │ ├── FArrayProperty.cs │ │ ├── FField.cs │ │ ├── FMapProperty.cs │ │ ├── FMulticastDelegateProperty.cs │ │ ├── FProperty.cs │ │ └── FStructProperty.cs └── Weavers │ ├── FodyWeavers.xml │ ├── UnrealTypeWeaver.cs │ └── Weavers.csproj ├── Source ├── Compiler │ ├── Compiler.Build.cs │ ├── Private │ │ ├── Compiler.cpp │ │ ├── FCSharpCompiler.cpp │ │ └── FCSharpCompilerRunnable.cpp │ └── Public │ │ ├── Compiler.h │ │ ├── FCSharpCompiler.h │ │ └── FCSharpCompilerRunnable.h ├── CrossVersion │ ├── CrossVersion.build.cs │ ├── Private │ │ └── CrossVersion.cpp │ └── Public │ │ ├── CppVersion.h │ │ ├── CrossVersion.h │ │ ├── DotnetVersion.h │ │ └── UEVersion.h ├── ScriptCodeGenerator │ ├── Private │ │ ├── FAssetGenerator.cpp │ │ ├── FBindingClassGenerator.cpp │ │ ├── FBindingEnumGenerator.cpp │ │ ├── FClassGenerator.cpp │ │ ├── FCodeAnalysis.cpp │ │ ├── FDelegateGenerator.cpp │ │ ├── FDoxygenConverter.cpp │ │ ├── FEnumGenerator.cpp │ │ ├── FGeneratorCore.cpp │ │ ├── FSolutionGenerator.cpp │ │ ├── FStructGenerator.cpp │ │ └── ScriptCodeGenerator.cpp │ ├── Public │ │ ├── FAssetGenerator.h │ │ ├── FBindingClassGenerator.h │ │ ├── FBindingEnumGenerator.h │ │ ├── FClassGenerator.h │ │ ├── FCodeAnalysis.h │ │ ├── FDelegateGenerator.h │ │ ├── FDoxygenConverter.h │ │ ├── FEnumGenerator.h │ │ ├── FGeneratorCore.h │ │ ├── FGeneratorCore.inl │ │ ├── FSolutionGenerator.h │ │ ├── FStructGenerator.h │ │ ├── ScriptCodeGenerator.h │ │ └── ScriptCodeGeneratorMacro.h │ └── ScriptCodeGenerator.Build.cs ├── UnrealCSharp │ ├── Private │ │ ├── Binding │ │ │ └── Class │ │ │ │ └── FClassBuilder.cpp │ │ ├── Delegate │ │ │ └── FUnrealCSharpDelegates.cpp │ │ ├── Domain │ │ │ ├── FDomain.cpp │ │ │ └── InternalCall │ │ │ │ ├── FRegisterAnsiString.cpp │ │ │ │ ├── FRegisterArray.cpp │ │ │ │ ├── FRegisterAssetBundleData.cpp │ │ │ │ ├── FRegisterAssetBundleEntry.cpp │ │ │ │ ├── FRegisterBox2D.cpp │ │ │ │ ├── FRegisterClass.cpp │ │ │ │ ├── FRegisterColor.cpp │ │ │ │ ├── FRegisterDataTableFunctionLibrary.cpp │ │ │ │ ├── FRegisterDateTime.cpp │ │ │ │ ├── FRegisterDelegate.cpp │ │ │ │ ├── FRegisterEnhancedInputComponent.cpp │ │ │ │ ├── FRegisterFloatInterval.cpp │ │ │ │ ├── FRegisterFloatRange.cpp │ │ │ │ ├── FRegisterFloatRangeBound.cpp │ │ │ │ ├── FRegisterForceInit.h │ │ │ │ ├── FRegisterFrameNumber.cpp │ │ │ │ ├── FRegisterFrameTime.cpp │ │ │ │ ├── FRegisterFunction.cpp │ │ │ │ ├── FRegisterGuid.cpp │ │ │ │ ├── FRegisterInputComponent.cpp │ │ │ │ ├── FRegisterInt32Interval.cpp │ │ │ │ ├── FRegisterInt32Range.cpp │ │ │ │ ├── FRegisterInt32RangeBound.cpp │ │ │ │ ├── FRegisterKeys.cpp │ │ │ │ ├── FRegisterLazyObjectPtr.cpp │ │ │ │ ├── FRegisterLinearColor.cpp │ │ │ │ ├── FRegisterLog.cpp │ │ │ │ ├── FRegisterMap.cpp │ │ │ │ ├── FRegisterMatrix.cpp │ │ │ │ ├── FRegisterMulticastDelegate.cpp │ │ │ │ ├── FRegisterName.cpp │ │ │ │ ├── FRegisterObject.cpp │ │ │ │ ├── FRegisterObjectFlags.h │ │ │ │ ├── FRegisterOptional.cpp │ │ │ │ ├── FRegisterPlane.cpp │ │ │ │ ├── FRegisterPolyglotTextData.cpp │ │ │ │ ├── FRegisterPrimaryAssetId.cpp │ │ │ │ ├── FRegisterPrimaryAssetType.cpp │ │ │ │ ├── FRegisterProperty.cpp │ │ │ │ ├── FRegisterQuat.cpp │ │ │ │ ├── FRegisterRandomStream.cpp │ │ │ │ ├── FRegisterRotator.cpp │ │ │ │ ├── FRegisterScriptInterface.cpp │ │ │ │ ├── FRegisterSet.cpp │ │ │ │ ├── FRegisterSoftClassPath.cpp │ │ │ │ ├── FRegisterSoftClassPtr.cpp │ │ │ │ ├── FRegisterSoftObjectPath.cpp │ │ │ │ ├── FRegisterSoftObjectPtr.cpp │ │ │ │ ├── FRegisterString.cpp │ │ │ │ ├── FRegisterStruct.cpp │ │ │ │ ├── FRegisterSubclassOf.cpp │ │ │ │ ├── FRegisterText.cpp │ │ │ │ ├── FRegisterTimespan.cpp │ │ │ │ ├── FRegisterTransform.cpp │ │ │ │ ├── FRegisterUnreal.cpp │ │ │ │ ├── FRegisterUtf8String.cpp │ │ │ │ ├── FRegisterVector.cpp │ │ │ │ ├── FRegisterVector2D.cpp │ │ │ │ ├── FRegisterVector4.cpp │ │ │ │ ├── FRegisterWeakObjectPtr.cpp │ │ │ │ └── FRegisterWorld.cpp │ │ ├── Environment │ │ │ └── FCSharpEnvironment.cpp │ │ ├── Listener │ │ │ └── FUObjectListener.cpp │ │ ├── Reflection │ │ │ ├── Class │ │ │ │ └── FClassDescriptor.cpp │ │ │ ├── Container │ │ │ │ ├── FArrayHelper.cpp │ │ │ │ ├── FMapHelper.cpp │ │ │ │ └── FSetHelper.cpp │ │ │ ├── Delegate │ │ │ │ ├── DelegateHandler.cpp │ │ │ │ ├── FDelegateHelper.cpp │ │ │ │ ├── FMulticastDelegateHelper.cpp │ │ │ │ └── MulticastDelegateHandler.cpp │ │ │ ├── Function │ │ │ │ ├── CSharpFunction.cpp │ │ │ │ ├── FCSharpDelegateDescriptor.cpp │ │ │ │ ├── FCSharpFunctionDescriptor.cpp │ │ │ │ ├── FCSharpFunctionRegister.cpp │ │ │ │ ├── FFunctionDescriptor.cpp │ │ │ │ ├── FFunctionParamBufferAllocator.cpp │ │ │ │ └── FUnrealFunctionDescriptor.cpp │ │ │ ├── Optional │ │ │ │ └── FOptionalHelper.cpp │ │ │ └── Property │ │ │ │ ├── ContainerProperty │ │ │ │ ├── FArrayPropertyDescriptor.cpp │ │ │ │ ├── FMapPropertyDescriptor.cpp │ │ │ │ └── FSetPropertyDescriptor.cpp │ │ │ │ ├── DelegateProperty │ │ │ │ ├── FDelegatePropertyDescriptor.cpp │ │ │ │ ├── FMulticastDelegatePropertyDescriptor.cpp │ │ │ │ └── FMulticastSparseDelegatePropertyDescriptor.cpp │ │ │ │ ├── EnumProperty │ │ │ │ └── FEnumPropertyDescriptor.cpp │ │ │ │ ├── FPropertyDescriptor.cpp │ │ │ │ ├── ObjectProperty │ │ │ │ ├── FClassPropertyDescriptor.cpp │ │ │ │ ├── FInterfacePropertyDescriptor.cpp │ │ │ │ ├── FLazyObjectPropertyDescriptor.cpp │ │ │ │ ├── FObjectPropertyDescriptor.cpp │ │ │ │ ├── FSoftClassPropertyDescriptor.cpp │ │ │ │ ├── FSoftObjectPropertyDescriptor.cpp │ │ │ │ ├── FSubclassOfPropertyDescriptor.cpp │ │ │ │ └── FWeakObjectPropertyDescriptor.cpp │ │ │ │ ├── OptionalProperty │ │ │ │ └── FOptionalPropertyDescriptor.cpp │ │ │ │ ├── PrimitiveProperty │ │ │ │ ├── FBoolPropertyDescriptor.cpp │ │ │ │ ├── FBytePropertyDescriptor.cpp │ │ │ │ ├── FDoublePropertyDescriptor.cpp │ │ │ │ ├── FFloatPropertyDescriptor.cpp │ │ │ │ ├── FInt16PropertyDescriptor.cpp │ │ │ │ ├── FInt64PropertyDescriptor.cpp │ │ │ │ ├── FInt8PropertyDescriptor.cpp │ │ │ │ ├── FIntPropertyDescriptor.cpp │ │ │ │ ├── FUInt16PropertyDescriptor.cpp │ │ │ │ ├── FUInt32PropertyDescriptor.cpp │ │ │ │ └── FUInt64PropertyDescriptor.cpp │ │ │ │ ├── StringProperty │ │ │ │ ├── FAnsiStrPropertyDescriptor.cpp │ │ │ │ ├── FNamePropertyDescriptor.cpp │ │ │ │ ├── FStrPropertyDescriptor.cpp │ │ │ │ ├── FTextPropertyDescriptor.cpp │ │ │ │ └── FUtf8StrPropertyDescriptor.cpp │ │ │ │ └── StructProperty │ │ │ │ └── FStructPropertyDescriptor.cpp │ │ ├── Registry │ │ │ ├── FBindingRegistry.cpp │ │ │ ├── FCSharpBind.cpp │ │ │ ├── FClassRegistry.cpp │ │ │ ├── FContainerRegistry.cpp │ │ │ ├── FDelegateRegistry.cpp │ │ │ ├── FDynamicRegistry.cpp │ │ │ ├── FMultiRegistry.cpp │ │ │ ├── FObjectRegistry.cpp │ │ │ ├── FOptionalRegistry.cpp │ │ │ ├── FReferenceRegistry.cpp │ │ │ ├── FStringRegistry.cpp │ │ │ └── FStructRegistry.cpp │ │ └── UnrealCSharp.cpp │ ├── Public │ │ ├── Binding │ │ │ ├── Class │ │ │ │ ├── FClassBuilder.h │ │ │ │ ├── FClassBuilder.inl │ │ │ │ ├── PreHeader.h │ │ │ │ ├── TBindingClassBuilder.inl │ │ │ │ └── TClassBuilder.inl │ │ │ ├── Core │ │ │ │ ├── TPropertyClass.inl │ │ │ │ └── TPropertyValue.inl │ │ │ ├── Enum │ │ │ │ └── TBindingEnumBuilder.inl │ │ │ ├── Function │ │ │ │ ├── TArgument.inl │ │ │ │ ├── TBufferOffset.inl │ │ │ │ ├── TConstructorBuilder.inl │ │ │ │ ├── TConstructorHelper.inl │ │ │ │ ├── TDestructorBuilder.inl │ │ │ │ ├── TDestructorHelper.inl │ │ │ │ ├── TFunctionBuilder.inl │ │ │ │ ├── TFunctionHelper.inl │ │ │ │ ├── TOut.inl │ │ │ │ ├── TOverloadBuilder.inl │ │ │ │ ├── TReturnValue.inl │ │ │ │ ├── TSubscriptBuilder.inl │ │ │ │ └── TSubscriptHelper.inl │ │ │ ├── Property │ │ │ │ └── TPropertyBuilder.inl │ │ │ ├── ScriptStruct │ │ │ │ ├── TBaseStructure.inl │ │ │ │ └── TScriptStruct.inl │ │ │ └── Template │ │ │ │ └── TIsProjectClass.inl │ │ ├── Common │ │ │ └── EFunctionReturnType.h │ │ ├── Delegate │ │ │ └── FUnrealCSharpModuleDelegates.h │ │ ├── Domain │ │ │ ├── FDomain.h │ │ │ └── FDomain.inl │ │ ├── Environment │ │ │ ├── FCSharpEnvironment.h │ │ │ └── FCSharpEnvironment.inl │ │ ├── GarbageCollection │ │ │ ├── FGarbageCollectionHandle.h │ │ │ ├── TGarbageCollectionHandle.inl │ │ │ ├── TGarbageCollectionHandleMapping.inl │ │ │ └── TMapping.inl │ │ ├── Listener │ │ │ └── FUObjectListener.h │ │ ├── Macro │ │ │ ├── BindingMacro.h │ │ │ ├── FunctionMacro.h │ │ │ ├── NamespaceMacro.h │ │ │ ├── PropertyMacro.h │ │ │ └── SignatureMacro.h │ │ ├── Reference │ │ │ ├── FBindingReference.h │ │ │ ├── FReference.h │ │ │ ├── FStructReference.h │ │ │ ├── TContainerReference.h │ │ │ └── TDelegateReference.h │ │ ├── Reflection │ │ │ ├── Class │ │ │ │ ├── FClassDescriptor.h │ │ │ │ └── FClassDescriptor.inl │ │ │ ├── Container │ │ │ │ ├── FArrayHelper.h │ │ │ │ ├── FMapHelper.h │ │ │ │ └── FSetHelper.h │ │ │ ├── Delegate │ │ │ │ ├── DelegateHandler.h │ │ │ │ ├── FDelegateBaseHelper.h │ │ │ │ ├── FDelegateHelper.h │ │ │ │ ├── FDelegateWrapper.h │ │ │ │ ├── FMulticastDelegateHelper.h │ │ │ │ └── MulticastDelegateHandler.h │ │ │ ├── Function │ │ │ │ ├── CSharpFunction.h │ │ │ │ ├── FCSharpDelegateDescriptor.h │ │ │ │ ├── FCSharpDelegateDescriptor.inl │ │ │ │ ├── FCSharpFunctionDescriptor.h │ │ │ │ ├── FCSharpFunctionRegister.h │ │ │ │ ├── FFunctionDescriptor.h │ │ │ │ ├── FFunctionParamBufferAllocator.h │ │ │ │ ├── FUnrealFunctionDescriptor.h │ │ │ │ └── FUnrealFunctionDescriptor.inl │ │ │ ├── Optional │ │ │ │ └── FOptionalHelper.h │ │ │ └── Property │ │ │ │ ├── ContainerProperty │ │ │ │ ├── FArrayPropertyDescriptor.h │ │ │ │ ├── FMapPropertyDescriptor.h │ │ │ │ └── FSetPropertyDescriptor.h │ │ │ │ ├── DelegateProperty │ │ │ │ ├── FDelegatePropertyDescriptor.h │ │ │ │ ├── FMulticastDelegatePropertyDescriptor.h │ │ │ │ ├── FMulticastInlineDelegatePropertyDescriptor.h │ │ │ │ └── FMulticastSparseDelegatePropertyDescriptor.h │ │ │ │ ├── EnumProperty │ │ │ │ └── FEnumPropertyDescriptor.h │ │ │ │ ├── FPropertyDescriptor.h │ │ │ │ ├── FPropertyDescriptor.inl │ │ │ │ ├── FieldPathProperty │ │ │ │ └── FFieldPathPropertyDescriptor.h │ │ │ │ ├── ObjectProperty │ │ │ │ ├── FClassPropertyDescriptor.h │ │ │ │ ├── FInterfacePropertyDescriptor.h │ │ │ │ ├── FLazyObjectPropertyDescriptor.h │ │ │ │ ├── FObjectPropertyDescriptor.h │ │ │ │ ├── FSoftClassPropertyDescriptor.h │ │ │ │ ├── FSoftObjectPropertyDescriptor.h │ │ │ │ ├── FSubclassOfPropertyDescriptor.h │ │ │ │ └── FWeakObjectPropertyDescriptor.h │ │ │ │ ├── OptionalProperty │ │ │ │ └── FOptionalPropertyDescriptor.h │ │ │ │ ├── PrimitiveProperty │ │ │ │ ├── FBoolPropertyDescriptor.h │ │ │ │ ├── FBytePropertyDescriptor.h │ │ │ │ ├── FDoublePropertyDescriptor.h │ │ │ │ ├── FFloatPropertyDescriptor.h │ │ │ │ ├── FInt16PropertyDescriptor.h │ │ │ │ ├── FInt64PropertyDescriptor.h │ │ │ │ ├── FInt8PropertyDescriptor.h │ │ │ │ ├── FIntPropertyDescriptor.h │ │ │ │ ├── FUInt16PropertyDescriptor.h │ │ │ │ ├── FUInt32PropertyDescriptor.h │ │ │ │ └── FUInt64PropertyDescriptor.h │ │ │ │ ├── StringProperty │ │ │ │ ├── FAnsiStrPropertyDescriptor.h │ │ │ │ ├── FNamePropertyDescriptor.h │ │ │ │ ├── FStrPropertyDescriptor.h │ │ │ │ ├── FTextPropertyDescriptor.h │ │ │ │ └── FUtf8StrPropertyDescriptor.h │ │ │ │ ├── StructProperty │ │ │ │ └── FStructPropertyDescriptor.h │ │ │ │ ├── TCompoundPropertyDescriptor.inl │ │ │ │ ├── TPrimitivePropertyDescriptor.inl │ │ │ │ └── TPropertyDescriptor.inl │ │ ├── Registry │ │ │ ├── FBindingRegistry.h │ │ │ ├── FBindingRegistry.inl │ │ │ ├── FCSharpBind.h │ │ │ ├── FCSharpBind.inl │ │ │ ├── FClassRegistry.h │ │ │ ├── FClassRegistry.inl │ │ │ ├── FContainerRegistry.h │ │ │ ├── FContainerRegistry.inl │ │ │ ├── FDelegateRegistry.h │ │ │ ├── FDelegateRegistry.inl │ │ │ ├── FDynamicRegistry.h │ │ │ ├── FMultiRegistry.h │ │ │ ├── FMultiRegistry.inl │ │ │ ├── FObjectRegistry.h │ │ │ ├── FOptionalRegistry.h │ │ │ ├── FOptionalRegistry.inl │ │ │ ├── FReferenceRegistry.h │ │ │ ├── FStringRegistry.h │ │ │ ├── FStringRegistry.inl │ │ │ ├── FStructRegistry.h │ │ │ ├── FStructRegistry.inl │ │ │ ├── TValueMapping.inl │ │ │ └── TValueWrapper.inl │ │ └── UnrealCSharp.h │ └── UnrealCSharp.Build.cs ├── UnrealCSharpCore │ ├── Private │ │ ├── Binding │ │ │ ├── Class │ │ │ │ ├── FBindingClass.cpp │ │ │ │ └── FBindingClassRegister.cpp │ │ │ ├── Enum │ │ │ │ ├── FBindingEnum.cpp │ │ │ │ └── FBindingEnumRegister.cpp │ │ │ └── FBinding.cpp │ │ ├── Bridge │ │ │ └── FTypeBridge.cpp │ │ ├── Common │ │ │ ├── FUnrealCSharpFunctionLibrary.cpp │ │ │ └── NameEncode.cpp │ │ ├── Delegate │ │ │ └── FUnrealCSharpCoreModuleDelegates.cpp │ │ ├── Domain │ │ │ ├── AssemblyLoader.cpp │ │ │ ├── FMonoDomain.cpp │ │ │ └── FMonoProfiler.cpp │ │ ├── Dynamic │ │ │ ├── DynamicBlueprintExtension.cpp │ │ │ ├── DynamicScriptStruct.cpp │ │ │ ├── FDynamicClassGenerator.cpp │ │ │ ├── FDynamicDependencyGraph.cpp │ │ │ ├── FDynamicEnumGenerator.cpp │ │ │ ├── FDynamicGenerator.cpp │ │ │ ├── FDynamicGeneratorCore.cpp │ │ │ ├── FDynamicInterfaceGenerator.cpp │ │ │ └── FDynamicStructGenerator.cpp │ │ ├── Listener │ │ │ └── FEngineListener.cpp │ │ ├── Log │ │ │ ├── FMonoLog.cpp │ │ │ └── UnrealCSharpLog.cpp │ │ ├── Setting │ │ │ ├── UnrealCSharpEditorSetting.cpp │ │ │ └── UnrealCSharpSetting.cpp │ │ └── UnrealCSharpCore.cpp │ ├── Public │ │ ├── Binding │ │ │ ├── Class │ │ │ │ ├── FBindingClass.h │ │ │ │ └── FBindingClassRegister.h │ │ │ ├── Enum │ │ │ │ ├── FBindingEnum.h │ │ │ │ └── FBindingEnumRegister.h │ │ │ ├── FBinding.h │ │ │ ├── Function │ │ │ │ ├── EFunctionInteract.h │ │ │ │ ├── EFunctionType.h │ │ │ │ ├── FBindingFunction.h │ │ │ │ ├── FBindingFunctionRegister.h │ │ │ │ ├── FBindingMethod.h │ │ │ │ ├── FBindingMethodRegister.h │ │ │ │ ├── FBindingSubscript.h │ │ │ │ ├── FBindingSubscriptRegister.h │ │ │ │ ├── FFunctionInfo.h │ │ │ │ ├── TDefaultArgument.inl │ │ │ │ ├── TDefaultArguments.inl │ │ │ │ ├── TFunctionInfo.inl │ │ │ │ └── TFunctionInfoBuilder.inl │ │ │ ├── Property │ │ │ │ ├── EBindingPropertyAccess.h │ │ │ │ ├── EPropertyInteract.h │ │ │ │ ├── FBindingProperty.h │ │ │ │ └── FBindingPropertyRegister.h │ │ │ └── TypeInfo │ │ │ │ ├── FBindingTypeInfo.h │ │ │ │ ├── FBindingTypeInfoRegister.h │ │ │ │ ├── FNameSpace.h │ │ │ │ ├── FTypeInfo.h │ │ │ │ ├── TGeneric.inl │ │ │ │ ├── TIsPrimitive.inl │ │ │ │ ├── TIsRef.inl │ │ │ │ ├── TName.inl │ │ │ │ ├── TNameSpace.inl │ │ │ │ └── TTypeInfo.inl │ │ ├── Bridge │ │ │ ├── EPropertyTypeExtent.h │ │ │ ├── FTypeBridge.h │ │ │ └── FTypeBridge.inl │ │ ├── Common │ │ │ ├── FUnrealCSharpFunctionLibrary.h │ │ │ └── NameEncode.h │ │ ├── CoreMacro │ │ │ ├── AccessPrivateMacro.h │ │ │ ├── BindingMacro.h │ │ │ ├── BufferMacro.h │ │ │ ├── ClassAttributeMacro.h │ │ │ ├── ClassMacro.h │ │ │ ├── CompilerMacro.h │ │ │ ├── FunctionAttributeMacro.h │ │ │ ├── FunctionMacro.h │ │ │ ├── GenericAttributeMacro.h │ │ │ ├── Macro.h │ │ │ ├── MetaDataAttributeMacro.h │ │ │ ├── MonoMacro.h │ │ │ ├── NamespaceMacro.h │ │ │ ├── PropertyAttributeMacro.h │ │ │ └── PropertyMacro.h │ │ ├── Delegate │ │ │ └── FUnrealCSharpCoreModuleDelegates.h │ │ ├── Domain │ │ │ ├── AssemblyLoader.h │ │ │ ├── FMonoDomain.h │ │ │ ├── FMonoDomain.inl │ │ │ ├── FMonoDomainInitializeParams.h │ │ │ ├── FMonoDomainScope.h │ │ │ ├── FMonoObjectTypes.h │ │ │ └── FMonoProfiler.h │ │ ├── Dynamic │ │ │ ├── DynamicBlueprintExtension.h │ │ │ ├── DynamicScriptStruct.h │ │ │ ├── EDynamicClassGeneratorType.h │ │ │ ├── EDynamicType.h │ │ │ ├── FDynamicBlueprintExtensionScope.h │ │ │ ├── FDynamicClassGenerator.h │ │ │ ├── FDynamicDependencyGraph.h │ │ │ ├── FDynamicEnumGenerator.h │ │ │ ├── FDynamicGenerator.h │ │ │ ├── FDynamicGeneratorCore.h │ │ │ ├── FDynamicInterfaceGenerator.h │ │ │ └── FDynamicStructGenerator.h │ │ ├── Listener │ │ │ └── FEngineListener.h │ │ ├── Log │ │ │ ├── FMonoLog.h │ │ │ └── UnrealCSharpLog.h │ │ ├── Setting │ │ │ ├── UnrealCSharpEditorSetting.h │ │ │ └── UnrealCSharpSetting.h │ │ ├── Template │ │ │ ├── TAccessPrivate.inl │ │ │ ├── TAccessPrivateStub.inl │ │ │ ├── TFieldIteratorExt.inl │ │ │ ├── TFunctionPointer.inl │ │ │ ├── TGetArrayLength.inl │ │ │ ├── TIsNotUEnum.inl │ │ │ ├── TIsReflectionClass.inl │ │ │ ├── TIsScriptStruct.inl │ │ │ ├── TIsTEnumAsByte.inl │ │ │ ├── TIsTLazyObjectPtr.inl │ │ │ ├── TIsTOptional.inl │ │ │ ├── TIsTScriptInterface.inl │ │ │ ├── TIsTSoftClassPtr.inl │ │ │ ├── TIsTSoftObjectPtr.inl │ │ │ ├── TIsTWeakObjectPtr.inl │ │ │ ├── TIsUObject.inl │ │ │ ├── TIsUStruct.inl │ │ │ └── TTemplateTypeTraits.inl │ │ └── UnrealCSharpCore.h │ └── UnrealCSharpCore.build.cs └── UnrealCSharpEditor │ ├── Private │ ├── ContentBrowser │ │ ├── DynamicDataSource.cpp │ │ ├── DynamicFileItemDataPayload.cpp │ │ ├── DynamicHierarchy.cpp │ │ └── DynamicNewClassContextMenu.cpp │ ├── DetailCustomization │ │ ├── DirectoryPathCustomization.cpp │ │ ├── GameContentDirectoryPathCustomization.cpp │ │ └── ProjectDirectoryPathCustomization.cpp │ ├── Listener │ │ └── FEditorListener.cpp │ ├── NewClass │ │ ├── ClassCollector.cpp │ │ ├── DynamicNewClassInfo.cpp │ │ ├── DynamicNewClassUtils.cpp │ │ ├── SDynamicClassViewer.cpp │ │ └── SDynamicNewClassDialog.cpp │ ├── ToolBar │ │ ├── UnrealCSharpBlueprintToolBar.cpp │ │ └── UnrealCSharpPlayToolBar.cpp │ ├── UnrealCSharpEditor.cpp │ ├── UnrealCSharpEditorCommands.cpp │ └── UnrealCSharpEditorStyle.cpp │ ├── Public │ ├── ContentBrowser │ │ ├── DynamicDataSource.h │ │ ├── DynamicFileItemDataPayload.h │ │ ├── DynamicFolderItemDataPayload.h │ │ ├── DynamicHierarchy.h │ │ └── DynamicNewClassContextMenu.h │ ├── DetailCustomization │ │ ├── DirectoryPathCustomization.h │ │ ├── GameContentDirectoryPathCustomization.h │ │ └── ProjectDirectoryPathCustomization.h │ ├── Listener │ │ └── FEditorListener.h │ ├── NewClass │ │ ├── ClassCollector.h │ │ ├── DynamicNewClassInfo.h │ │ ├── DynamicNewClassUtils.h │ │ ├── ProjectContent.h │ │ ├── SDynamicClassViewer.h │ │ └── SDynamicNewClassDialog.h │ ├── ToolBar │ │ ├── UnrealCSharpBlueprintToolBar.h │ │ └── UnrealCSharpPlayToolBar.h │ ├── UnrealCSharpEditor.h │ ├── UnrealCSharpEditorCommands.h │ └── UnrealCSharpEditorStyle.h │ └── UnrealCSharpEditor.Build.cs ├── Template ├── Dynamic │ ├── DynamicActor.cs │ ├── DynamicActorComponent.cs │ ├── DynamicObject.cs │ └── DynamicUserWidget.cs ├── Game.csproj ├── Game.csproj.props ├── Override │ ├── Actor.cs │ ├── ActorComponent.cs │ ├── Object.cs │ └── UserWidget.cs ├── Script.sln └── UE.csproj └── UnrealCSharp.uplugin /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/README.md -------------------------------------------------------------------------------- /Resources/ButtonIcon_40x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Resources/ButtonIcon_40x.png -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Resources/Logo.png -------------------------------------------------------------------------------- /Script/CodeAnalysis/CodeAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/CodeAnalysis/CodeAnalysis.cs -------------------------------------------------------------------------------- /Script/CodeAnalysis/CodeAnalysis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/CodeAnalysis/CodeAnalysis.csproj -------------------------------------------------------------------------------- /Script/SourceGenerator/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/SourceGenerator/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /Script/SourceGenerator/SourceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/SourceGenerator/SourceGenerator.csproj -------------------------------------------------------------------------------- /Script/SourceGenerator/UnrealTypeSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/SourceGenerator/UnrealTypeSourceGenerator.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/Class.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/Class.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/DataTableFunctionLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/DataTableFunctionLibrary.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/EnhancedInputComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/EnhancedInputComponent.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/FActorSpawnParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/FActorSpawnParameters.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/FAnsiString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/FAnsiString.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/FName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/FName.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/FString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/FString.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/FText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/FText.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/FUtf8String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/FUtf8String.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/IGarbageCollectionHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/IGarbageCollectionHandle.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/IStaticClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/IStaticClass.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/IStaticStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/IStaticStruct.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/InputComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/InputComponent.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/Object.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/OverrideAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/OverrideAttribute.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/PathNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/PathNameAttribute.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/SynchronizationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/SynchronizationContext.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TArray.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TFieldPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TFieldPath.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TLazyObjectPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TLazyObjectPtr.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TMap.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TOptional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TOptional.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TScriptInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TScriptInterface.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TSet.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TSoftClassPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TSoftClassPtr.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TSoftObjectPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TSoftObjectPtr.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TSubclassOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TSubclassOf.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TWeakObjectPtr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TWeakObjectPtr.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/TaskInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/TaskInfo.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/Unreal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/Unreal.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/Utils.cs -------------------------------------------------------------------------------- /Script/UE/CoreUObject/World.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/CoreUObject/World.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/AdvancedClassDisplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/AdvancedClassDisplayAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/AutoCollapseCategoriesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/AutoCollapseCategoriesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/AutoExpandCategoriesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/AutoExpandCategoriesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/BlueprintSpawnableComponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/BlueprintSpawnableComponentAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ChildCanTickAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ChildCanTickAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ChildCannotTickAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ChildCannotTickAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ClassGroupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ClassGroupAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/CollapseCategoriesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/CollapseCategoriesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ComponentWrapperClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ComponentWrapperClassAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ConfigDoNotCheckDefaultsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ConfigDoNotCheckDefaultsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ConstAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ConstAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/CustomConstructorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/CustomConstructorAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/CustomThunkTemplatesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/CustomThunkTemplatesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/DebugTreeLeafAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/DebugTreeLeafAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/DefaultConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/DefaultConfigAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/DefaultToInstancedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/DefaultToInstancedAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/DeprecatedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/DeprecatedAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/DeprecatedNodeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/DeprecatedNodeAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/DontAutoCollapseCategoriesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/DontAutoCollapseCategoriesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/DontCollapseCategoriesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/DontCollapseCategoriesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/DontUseGenericSpawnObjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/DontUseGenericSpawnObjectAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/EarlyAccessPreviewAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/EarlyAccessPreviewAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/EditInlineNewAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/EditInlineNewAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ExposedAsyncProxyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ExposedAsyncProxyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/HideCategoriesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/HideCategoriesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/HideDropdownAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/HideDropdownAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/HideFunctionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/HideFunctionsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/IgnoreCategoryKeywordsInSubclassesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/IgnoreCategoryKeywordsInSubclassesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/IntrinsicAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/IntrinsicAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/KismetHideOverridesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/KismetHideOverridesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/NotEditInlineNewAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/NotEditInlineNewAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/NotPlaceableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/NotPlaceableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/PerObjectConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/PerObjectConfigAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/PrioritizeCategoriesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/PrioritizeCategoriesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ProhibitedInterfacesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ProhibitedInterfacesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/RestrictedToClassesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/RestrictedToClassesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ShowCategoriesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ShowCategoriesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/ShowWorldContextPinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/ShowWorldContextPinAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/SparseClassDataTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/SparseClassDataTypeAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/UClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/UClassAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/UsesHierarchyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/UsesHierarchyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Class/WithinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Class/WithinAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Enum/BitflagsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Enum/BitflagsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Enum/UEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Enum/UEnumAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Enum/UseEnumValuesAsMaskValuesInEditorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Enum/UseEnumValuesAsMaskValuesInEditorAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ArrayParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ArrayParamAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ArrayParmAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ArrayParmAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ArrayTypeDependentParamsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ArrayTypeDependentParamsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/AutoCreateRefTermAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/AutoCreateRefTermAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/BitmaskAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/BitmaskAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/BitmaskEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/BitmaskEnumAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/BlueprintAutoCastAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/BlueprintAutoCastAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/BlueprintCosmeticAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/BlueprintCosmeticAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/BlueprintImplementableEventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/BlueprintImplementableEventAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/BlueprintNativeEventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/BlueprintNativeEventAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/BlueprintProtectedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/BlueprintProtectedAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/BlueprintPureAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/BlueprintPureAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/CallInEditorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/CallInEditorAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/CallableWithoutWorldContextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/CallableWithoutWorldContextAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ClientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ClientAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/CommutativeAssociativeBinaryOperatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/CommutativeAssociativeBinaryOperatorAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/CompactNodeTitleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/CompactNodeTitleAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/CustomStructureParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/CustomStructureParamAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/CustomThunkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/CustomThunkAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/DataTablePinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/DataTablePinAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/DefaultToSelfAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/DefaultToSelfAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/DeprecatedFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/DeprecatedFunctionAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/DeterminesOutputTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/DeterminesOutputTypeAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/DynamicOutputParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/DynamicOutputParamAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ExecAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ExecAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ExpandBoolAsExecsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ExpandBoolAsExecsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ExpandEnumAsExecsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ExpandEnumAsExecsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/HideAssetPickerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/HideAssetPickerAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/HidePinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/HidePinAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/HideSpawnParmsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/HideSpawnParmsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/InternalUseParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/InternalUseParamAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/KeywordsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/KeywordsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/LatentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/LatentAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/LatentInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/LatentInfoAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/MapKeyParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/MapKeyParamAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/MapParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/MapParamAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/MapValueParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/MapValueParamAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/MaterialParameterCollectionFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/MaterialParameterCollectionFunctionAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/NativeBreakFuncAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/NativeBreakFuncAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/NativeMakeFuncAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/NativeMakeFuncAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/NetMulticastAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/NetMulticastAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/NotBlueprintThreadSafeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/NotBlueprintThreadSafeAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ReliableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ReliableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ReturnDisplayNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ReturnDisplayNameAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ScriptConstantAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ScriptConstantAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ScriptConstantHostAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ScriptConstantHostAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ScriptMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ScriptMethodAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ScriptMethodSelfReturnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ScriptMethodSelfReturnAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ScriptOperatorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ScriptOperatorAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/SealedEventAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/SealedEventAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ServerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ServerAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ServiceRequestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ServiceRequestAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/ServiceResponseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/ServiceResponseAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/SetParamAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/SetParamAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/UFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/UFunctionAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/UnreliableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/UnreliableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/UnsafeDuringActorConstructionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/UnsafeDuringActorConstructionAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/WithValidationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/WithValidationAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Function/WorldContextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Function/WorldContextAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/AbstractAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/AbstractAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/BlueprintAuthorityOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/BlueprintAuthorityOnlyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/BlueprintCallableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/BlueprintCallableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/BlueprintGetterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/BlueprintGetterAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/BlueprintInternalUseOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/BlueprintInternalUseOnlyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/BlueprintSetterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/BlueprintSetterAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/BlueprintThreadSafeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/BlueprintThreadSafeAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/BlueprintTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/BlueprintTypeAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/BlueprintableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/BlueprintableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/CategoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/CategoryAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/ConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/ConfigAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/ConversionRootAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/ConversionRootAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/DeprecationMessageAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/DeprecationMessageAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/DisplayNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/DisplayNameAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/DocumentationPolicyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/DocumentationPolicyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/EditorConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/EditorConfigAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/ExperimentalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/ExperimentalAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/FieldNotifyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/FieldNotifyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/IsBlueprintBaseAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/IsBlueprintBaseAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/LoadBehaviorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/LoadBehaviorAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/MinimalAPIAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/MinimalAPIAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/NoExportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/NoExportAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/NotBlueprintTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/NotBlueprintTypeAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/NotBlueprintableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/NotBlueprintableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/ScriptNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/ScriptNameAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/ShortTooltipAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/ShortTooltipAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/ToolTipAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/ToolTipAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Generic/TransientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Generic/TransientAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Interface/CannotImplementInterfaceInBlueprintAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Interface/CannotImplementInterfaceInBlueprintAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Interface/UInterfaceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Interface/UInterfaceAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AdvancedDisplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AdvancedDisplayAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AllowAbstractAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AllowAbstractAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AllowAnyActorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AllowAnyActorAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AllowPreserveRatioAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AllowPreserveRatioAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AllowPrivateAccessAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AllowPrivateAccessAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AllowedClassesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AllowedClassesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AlwaysAsPinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AlwaysAsPinAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ArrayClampAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ArrayClampAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AssetBundlesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AssetBundlesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AssetRegistrySearchableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AssetRegistrySearchableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AttachmentParentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AttachmentParentAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/AttachmentSocketNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/AttachmentSocketNameAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/BlueprintAssignableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/BlueprintAssignableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/BlueprintBaseOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/BlueprintBaseOnlyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/BlueprintCompilerGeneratedDefaultsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/BlueprintCompilerGeneratedDefaultsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/BlueprintReadOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/BlueprintReadOnlyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/BlueprintReadWriteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/BlueprintReadWriteAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ClampMaxAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ClampMaxAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ClampMinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ClampMinAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ConfigHierarchyEditableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ConfigHierarchyEditableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ContentDirAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ContentDirAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/CustomizePropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/CustomizePropertyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DefaultSubobjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DefaultSubobjectAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DeltaAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DeltaAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DeprecatedPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DeprecatedPropertyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DevelopmentOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DevelopmentOnlyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DisallowedAssetDataTagsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DisallowedAssetDataTagsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DisallowedClassesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DisallowedClassesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DisplayAfterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DisplayAfterAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DisplayPriorityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DisplayPriorityAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DisplayThumbnailAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DisplayThumbnailAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/DuplicateTransientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/DuplicateTransientAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/EditAnywhereAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/EditAnywhereAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/EditConditionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/EditConditionAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/EditConditionHidesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/EditConditionHidesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/EditDefaultsOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/EditDefaultsOnlyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/EditFixedOrderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/EditFixedOrderAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/EditFixedSizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/EditFixedSizeAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/EditInlineAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/EditInlineAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/EditInstanceOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/EditInstanceOnlyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ExactClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ExactClassAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ExportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ExportAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ExposeFunctionCategoriesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ExposeFunctionCategoriesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ExposeOnSpawnAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ExposeOnSpawnAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/FilePathFilterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/FilePathFilterAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/FixedIncrementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/FixedIncrementAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ForceShowEngineContentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ForceShowEngineContentAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ForceShowPluginContentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ForceShowPluginContentAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ForceUnitsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ForceUnitsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/GetOptionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/GetOptionsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/GlobalConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/GlobalConfigAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/HideAlphaChannelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/HideAlphaChannelAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/HideInDetailPanelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/HideInDetailPanelAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/HideViewOptionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/HideViewOptionsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/IgnoreForMemberInitializationTestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/IgnoreForMemberInitializationTestAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/InlineEditConditionToggleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/InlineEditConditionToggleAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/InstancedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/InstancedAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/InterpAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/InterpAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/InvalidEnumValuesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/InvalidEnumValuesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/LatentCallbackTargetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/LatentCallbackTargetAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/LinearDeltaSensitivityAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/LinearDeltaSensitivityAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/LocalizedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/LocalizedAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/LongPackageNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/LongPackageNameAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/MakeEditWidgetAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/MakeEditWidgetAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/MakeStructureDefaultValueAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/MakeStructureDefaultValueAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/MaxLengthAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/MaxLengthAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/MetaClassAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/MetaClassAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/MultiLineAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/MultiLineAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/MultipleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/MultipleAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/MustImplementAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/MustImplementAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NeedsLatentFixupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NeedsLatentFixupAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NeverAsPinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NeverAsPinAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NoClearAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NoClearAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NoEditInlineAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NoEditInlineAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NoElementDuplicateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NoElementDuplicateAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NoResetToDefaultAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NoResetToDefaultAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NoSpinboxAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NoSpinboxAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NonPIEDuplicateTransientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NonPIEDuplicateTransientAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NonPIETransientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NonPIETransientAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NonTransactionalAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NonTransactionalAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/NotReplicatedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/NotReplicatedAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/OnlyPlaceableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/OnlyPlaceableAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/OverridingInputPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/OverridingInputPropertyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/PasswordFieldAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/PasswordFieldAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/PinHiddenByDefaultAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/PinHiddenByDefaultAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/PinShownByDefaultAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/PinShownByDefaultAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/RelativePathAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/RelativePathAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/RelativeToGameContentDirAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/RelativeToGameContentDirAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/RelativeToGameDirAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/RelativeToGameDirAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ReplicatedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ReplicatedAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ReplicatedUsingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ReplicatedUsingAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/RequiredAssetDataTagsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/RequiredAssetDataTagsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/RequiredInputAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/RequiredInputAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/RootComponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/RootComponentAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/SaveGameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/SaveGameAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ScriptNoExportAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ScriptNoExportAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ShowOnlyInnerPropertiesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ShowOnlyInnerPropertiesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ShowTreeViewAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ShowTreeViewAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/SimpleDisplayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/SimpleDisplayAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/SkipSerializationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/SkipSerializationAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/SliderExponentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/SliderExponentAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/TextExportTransientAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/TextExportTransientAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/TitlePropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/TitlePropertyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/UIMaxAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/UIMaxAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/UIMinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/UIMinAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/UPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/UPropertyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/UnitsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/UnitsAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/UntrackedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/UntrackedAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/ValidEnumValuesAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/ValidEnumValuesAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/VisibleAnywhereAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/VisibleAnywhereAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/VisibleDefaultsOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/VisibleDefaultsOnlyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Property/VisibleInstanceOnlyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Property/VisibleInstanceOnlyAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Struct/DisableSplitPinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Struct/DisableSplitPinAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Struct/HasNativeBreakAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Struct/HasNativeBreakAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Struct/HasNativeMakeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Struct/HasNativeMakeAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Struct/HiddenByDefaultAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Struct/HiddenByDefaultAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Dynamic/Struct/UStructAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Dynamic/Struct/UStructAttribute.cs -------------------------------------------------------------------------------- /Script/UE/Library/ClassImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/ClassImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/DataTableFunctionLibraryImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/DataTableFunctionLibraryImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/EnhancedInputComponentImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/EnhancedInputComponentImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FActorSpawnParametersImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FActorSpawnParametersImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FAnsiStringImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FAnsiStringImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FDelegateImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FDelegateImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FFunctionImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FFunctionImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FMulticastDelegateImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FMulticastDelegateImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FNameImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FNameImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FPropertyImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FPropertyImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FStringImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FStringImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FTextImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FTextImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/FUtf8StringImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/FUtf8StringImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/InputComponentImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/InputComponentImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/LogImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/LogImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/ObjectImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/ObjectImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/StructImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/StructImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TArrayImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TArrayImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TLazyObjectPtrImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TLazyObjectPtrImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TMapImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TMapImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TOptionalImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TOptionalImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TScriptInterfaceImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TScriptInterfaceImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TSetImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TSetImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TSoftClassPtrImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TSoftClassPtrImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TSoftObjectPtrImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TSoftObjectPtrImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TSubclassOfImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TSubclassOfImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/TWeakObjectPtrImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/TWeakObjectPtrImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/UnrealImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/UnrealImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Library/WorldImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Library/WorldImplementation.cs -------------------------------------------------------------------------------- /Script/UE/Log/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Log/Log.cs -------------------------------------------------------------------------------- /Script/UE/Reflection/Property/FArrayProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Reflection/Property/FArrayProperty.cs -------------------------------------------------------------------------------- /Script/UE/Reflection/Property/FField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Reflection/Property/FField.cs -------------------------------------------------------------------------------- /Script/UE/Reflection/Property/FMapProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Reflection/Property/FMapProperty.cs -------------------------------------------------------------------------------- /Script/UE/Reflection/Property/FMulticastDelegateProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Reflection/Property/FMulticastDelegateProperty.cs -------------------------------------------------------------------------------- /Script/UE/Reflection/Property/FProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Reflection/Property/FProperty.cs -------------------------------------------------------------------------------- /Script/UE/Reflection/Property/FStructProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/UE/Reflection/Property/FStructProperty.cs -------------------------------------------------------------------------------- /Script/Weavers/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/Weavers/FodyWeavers.xml -------------------------------------------------------------------------------- /Script/Weavers/UnrealTypeWeaver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/Weavers/UnrealTypeWeaver.cs -------------------------------------------------------------------------------- /Script/Weavers/Weavers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Script/Weavers/Weavers.csproj -------------------------------------------------------------------------------- /Source/Compiler/Compiler.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/Compiler/Compiler.Build.cs -------------------------------------------------------------------------------- /Source/Compiler/Private/Compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/Compiler/Private/Compiler.cpp -------------------------------------------------------------------------------- /Source/Compiler/Private/FCSharpCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/Compiler/Private/FCSharpCompiler.cpp -------------------------------------------------------------------------------- /Source/Compiler/Private/FCSharpCompilerRunnable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/Compiler/Private/FCSharpCompilerRunnable.cpp -------------------------------------------------------------------------------- /Source/Compiler/Public/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/Compiler/Public/Compiler.h -------------------------------------------------------------------------------- /Source/Compiler/Public/FCSharpCompiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/Compiler/Public/FCSharpCompiler.h -------------------------------------------------------------------------------- /Source/Compiler/Public/FCSharpCompilerRunnable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/Compiler/Public/FCSharpCompilerRunnable.h -------------------------------------------------------------------------------- /Source/CrossVersion/CrossVersion.build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/CrossVersion/CrossVersion.build.cs -------------------------------------------------------------------------------- /Source/CrossVersion/Private/CrossVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/CrossVersion/Private/CrossVersion.cpp -------------------------------------------------------------------------------- /Source/CrossVersion/Public/CppVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/CrossVersion/Public/CppVersion.h -------------------------------------------------------------------------------- /Source/CrossVersion/Public/CrossVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/CrossVersion/Public/CrossVersion.h -------------------------------------------------------------------------------- /Source/CrossVersion/Public/DotnetVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/CrossVersion/Public/DotnetVersion.h -------------------------------------------------------------------------------- /Source/CrossVersion/Public/UEVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/CrossVersion/Public/UEVersion.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FAssetGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FAssetGenerator.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FBindingClassGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FBindingClassGenerator.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FBindingEnumGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FBindingEnumGenerator.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FClassGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FClassGenerator.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FCodeAnalysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FCodeAnalysis.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FDelegateGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FDelegateGenerator.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FDoxygenConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FDoxygenConverter.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FEnumGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FEnumGenerator.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FGeneratorCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FGeneratorCore.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FSolutionGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FSolutionGenerator.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/FStructGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/FStructGenerator.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Private/ScriptCodeGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Private/ScriptCodeGenerator.cpp -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FAssetGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FAssetGenerator.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FBindingClassGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FBindingClassGenerator.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FBindingEnumGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FBindingEnumGenerator.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FClassGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FClassGenerator.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FCodeAnalysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FCodeAnalysis.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FDelegateGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FDelegateGenerator.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FDoxygenConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FDoxygenConverter.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FEnumGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FEnumGenerator.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FGeneratorCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FGeneratorCore.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FGeneratorCore.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FGeneratorCore.inl -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FSolutionGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FSolutionGenerator.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/FStructGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/FStructGenerator.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/ScriptCodeGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/Public/ScriptCodeGenerator.h -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/Public/ScriptCodeGeneratorMacro.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define ENUM_DEFAULT_MAX_INDEX 0 4 | -------------------------------------------------------------------------------- /Source/ScriptCodeGenerator/ScriptCodeGenerator.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/ScriptCodeGenerator/ScriptCodeGenerator.Build.cs -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Binding/Class/FClassBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Binding/Class/FClassBuilder.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Delegate/FUnrealCSharpDelegates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Delegate/FUnrealCSharpDelegates.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/FDomain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/FDomain.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterAnsiString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterAnsiString.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterArray.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterAssetBundleData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterAssetBundleData.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterAssetBundleEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterAssetBundleEntry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterBox2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterBox2D.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterClass.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterColor.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterDateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterDateTime.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterDelegate.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFloatInterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFloatInterval.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFloatRange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFloatRange.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFloatRangeBound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFloatRangeBound.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterForceInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterForceInit.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFrameNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFrameNumber.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFrameTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFrameTime.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterFunction.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterGuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterGuid.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterInputComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterInputComponent.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterInt32Interval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterInt32Interval.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterInt32Range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterInt32Range.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterInt32RangeBound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterInt32RangeBound.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterKeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterKeys.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterLazyObjectPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterLazyObjectPtr.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterLinearColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterLinearColor.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterLog.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterMap.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterMatrix.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterMulticastDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterMulticastDelegate.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterName.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterObject.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterObjectFlags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterObjectFlags.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterOptional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterOptional.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterPlane.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterPolyglotTextData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterPolyglotTextData.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterPrimaryAssetId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterPrimaryAssetId.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterPrimaryAssetType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterPrimaryAssetType.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterProperty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterProperty.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterQuat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterQuat.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterRandomStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterRandomStream.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterRotator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterRotator.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterScriptInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterScriptInterface.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSet.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSoftClassPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSoftClassPath.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSoftClassPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSoftClassPtr.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSoftObjectPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSoftObjectPath.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSoftObjectPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSoftObjectPtr.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterString.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterStruct.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSubclassOf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterSubclassOf.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterText.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterTimespan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterTimespan.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterTransform.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterUnreal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterUnreal.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterUtf8String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterUtf8String.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterVector.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterVector2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterVector2D.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterVector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterVector4.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterWeakObjectPtr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterWeakObjectPtr.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Domain/InternalCall/FRegisterWorld.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Environment/FCSharpEnvironment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Environment/FCSharpEnvironment.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Listener/FUObjectListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Listener/FUObjectListener.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Class/FClassDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Class/FClassDescriptor.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Container/FArrayHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Container/FArrayHelper.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Container/FMapHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Container/FMapHelper.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Container/FSetHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Container/FSetHelper.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Delegate/DelegateHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Delegate/DelegateHandler.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Delegate/FDelegateHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Delegate/FDelegateHelper.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Delegate/FMulticastDelegateHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Delegate/FMulticastDelegateHelper.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Delegate/MulticastDelegateHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Delegate/MulticastDelegateHandler.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Function/CSharpFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Function/CSharpFunction.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Function/FCSharpDelegateDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Function/FCSharpDelegateDescriptor.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Function/FCSharpFunctionDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Function/FCSharpFunctionDescriptor.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Function/FCSharpFunctionRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Function/FCSharpFunctionRegister.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Function/FFunctionDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Function/FFunctionDescriptor.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Function/FUnrealFunctionDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Function/FUnrealFunctionDescriptor.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Optional/FOptionalHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Optional/FOptionalHelper.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Reflection/Property/FPropertyDescriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Reflection/Property/FPropertyDescriptor.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FBindingRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FBindingRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FCSharpBind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FCSharpBind.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FClassRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FClassRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FContainerRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FContainerRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FDelegateRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FDelegateRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FDynamicRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FDynamicRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FMultiRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FMultiRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FObjectRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FObjectRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FOptionalRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FOptionalRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FReferenceRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FReferenceRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FStringRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FStringRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/Registry/FStructRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/Registry/FStructRegistry.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Private/UnrealCSharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Private/UnrealCSharp.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Class/FClassBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Class/FClassBuilder.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Class/FClassBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Class/FClassBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Class/PreHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Class/PreHeader.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Class/TBindingClassBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Class/TBindingClassBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Class/TClassBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Class/TClassBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Core/TPropertyClass.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Core/TPropertyClass.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Core/TPropertyValue.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Core/TPropertyValue.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Enum/TBindingEnumBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Enum/TBindingEnumBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TArgument.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TArgument.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TBufferOffset.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TBufferOffset.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TConstructorBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TConstructorBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TConstructorHelper.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TConstructorHelper.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TDestructorBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TDestructorBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TDestructorHelper.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TDestructorHelper.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TFunctionBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TFunctionBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TFunctionHelper.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TFunctionHelper.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TOut.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TOut.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TOverloadBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TOverloadBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TReturnValue.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TReturnValue.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TSubscriptBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TSubscriptBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Function/TSubscriptHelper.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Function/TSubscriptHelper.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Property/TPropertyBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Property/TPropertyBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/ScriptStruct/TBaseStructure.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/ScriptStruct/TBaseStructure.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/ScriptStruct/TScriptStruct.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/ScriptStruct/TScriptStruct.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Binding/Template/TIsProjectClass.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Binding/Template/TIsProjectClass.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Common/EFunctionReturnType.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum class EFunctionReturnType 4 | { 5 | Void, 6 | Primitive, 7 | Compound 8 | }; 9 | -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Delegate/FUnrealCSharpModuleDelegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Delegate/FUnrealCSharpModuleDelegates.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Domain/FDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Domain/FDomain.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Domain/FDomain.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Domain/FDomain.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Environment/FCSharpEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Environment/FCSharpEnvironment.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Environment/FCSharpEnvironment.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Environment/FCSharpEnvironment.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/GarbageCollection/FGarbageCollectionHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/GarbageCollection/FGarbageCollectionHandle.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/GarbageCollection/TGarbageCollectionHandle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/GarbageCollection/TGarbageCollectionHandle.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/GarbageCollection/TGarbageCollectionHandleMapping.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/GarbageCollection/TGarbageCollectionHandleMapping.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/GarbageCollection/TMapping.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/GarbageCollection/TMapping.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Listener/FUObjectListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Listener/FUObjectListener.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Macro/BindingMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Macro/BindingMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Macro/FunctionMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Macro/FunctionMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Macro/NamespaceMacro.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define NAMESPACE_BINDING FString(TEXT("Binding")) 4 | -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Macro/PropertyMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Macro/PropertyMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Macro/SignatureMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Macro/SignatureMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reference/FBindingReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reference/FBindingReference.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reference/FReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reference/FReference.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reference/FStructReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reference/FStructReference.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reference/TContainerReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reference/TContainerReference.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reference/TDelegateReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reference/TDelegateReference.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Class/FClassDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Class/FClassDescriptor.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Class/FClassDescriptor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Class/FClassDescriptor.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Container/FArrayHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Container/FArrayHelper.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Container/FMapHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Container/FMapHelper.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Container/FSetHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Container/FSetHelper.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Delegate/DelegateHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Delegate/DelegateHandler.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Delegate/FDelegateBaseHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Delegate/FDelegateBaseHelper.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Delegate/FDelegateHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Delegate/FDelegateHelper.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Delegate/FDelegateWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Delegate/FDelegateWrapper.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Delegate/FMulticastDelegateHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Delegate/FMulticastDelegateHelper.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Delegate/MulticastDelegateHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Delegate/MulticastDelegateHandler.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Function/CSharpFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Function/CSharpFunction.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Function/FCSharpDelegateDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Function/FCSharpDelegateDescriptor.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Function/FCSharpDelegateDescriptor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Function/FCSharpDelegateDescriptor.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Function/FCSharpFunctionDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Function/FCSharpFunctionDescriptor.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Function/FCSharpFunctionRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Function/FCSharpFunctionRegister.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Function/FFunctionDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Function/FFunctionDescriptor.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Function/FFunctionParamBufferAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Function/FFunctionParamBufferAllocator.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Function/FUnrealFunctionDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Function/FUnrealFunctionDescriptor.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Function/FUnrealFunctionDescriptor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Function/FUnrealFunctionDescriptor.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Optional/FOptionalHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Optional/FOptionalHelper.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Property/FPropertyDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Property/FPropertyDescriptor.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Property/FPropertyDescriptor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Property/FPropertyDescriptor.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Reflection/Property/TPropertyDescriptor.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Reflection/Property/TPropertyDescriptor.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FBindingRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FBindingRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FBindingRegistry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FBindingRegistry.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FCSharpBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FCSharpBind.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FCSharpBind.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FCSharpBind.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FClassRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FClassRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FClassRegistry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FClassRegistry.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FContainerRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FContainerRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FContainerRegistry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FContainerRegistry.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FDelegateRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FDelegateRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FDelegateRegistry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FDelegateRegistry.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FDynamicRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FDynamicRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FMultiRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FMultiRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FMultiRegistry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FMultiRegistry.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FObjectRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FObjectRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FOptionalRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FOptionalRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FOptionalRegistry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FOptionalRegistry.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FReferenceRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FReferenceRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FStringRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FStringRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FStringRegistry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FStringRegistry.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FStructRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FStructRegistry.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/FStructRegistry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/FStructRegistry.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/TValueMapping.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/TValueMapping.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/Registry/TValueWrapper.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/Registry/TValueWrapper.inl -------------------------------------------------------------------------------- /Source/UnrealCSharp/Public/UnrealCSharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/Public/UnrealCSharp.h -------------------------------------------------------------------------------- /Source/UnrealCSharp/UnrealCSharp.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharp/UnrealCSharp.Build.cs -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Binding/Class/FBindingClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Binding/Class/FBindingClass.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Binding/Class/FBindingClassRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Binding/Class/FBindingClassRegister.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Binding/Enum/FBindingEnum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Binding/Enum/FBindingEnum.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Binding/Enum/FBindingEnumRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Binding/Enum/FBindingEnumRegister.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Binding/FBinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Binding/FBinding.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Bridge/FTypeBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Bridge/FTypeBridge.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Common/FUnrealCSharpFunctionLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Common/FUnrealCSharpFunctionLibrary.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Common/NameEncode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Common/NameEncode.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Delegate/FUnrealCSharpCoreModuleDelegates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Delegate/FUnrealCSharpCoreModuleDelegates.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Domain/AssemblyLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Domain/AssemblyLoader.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Domain/FMonoDomain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Domain/FMonoDomain.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Domain/FMonoProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Domain/FMonoProfiler.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Dynamic/DynamicBlueprintExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Dynamic/DynamicBlueprintExtension.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Dynamic/DynamicScriptStruct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Dynamic/DynamicScriptStruct.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Dynamic/FDynamicClassGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Dynamic/FDynamicClassGenerator.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Dynamic/FDynamicDependencyGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Dynamic/FDynamicDependencyGraph.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Dynamic/FDynamicEnumGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Dynamic/FDynamicEnumGenerator.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Dynamic/FDynamicGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Dynamic/FDynamicGenerator.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Dynamic/FDynamicGeneratorCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Dynamic/FDynamicGeneratorCore.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Dynamic/FDynamicInterfaceGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Dynamic/FDynamicInterfaceGenerator.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Dynamic/FDynamicStructGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Dynamic/FDynamicStructGenerator.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Listener/FEngineListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Listener/FEngineListener.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Log/FMonoLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Log/FMonoLog.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Log/UnrealCSharpLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Log/UnrealCSharpLog.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Setting/UnrealCSharpEditorSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Setting/UnrealCSharpEditorSetting.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/Setting/UnrealCSharpSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/Setting/UnrealCSharpSetting.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Private/UnrealCSharpCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Private/UnrealCSharpCore.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Class/FBindingClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Class/FBindingClass.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Class/FBindingClassRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Class/FBindingClassRegister.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Enum/FBindingEnum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Enum/FBindingEnum.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Enum/FBindingEnumRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Enum/FBindingEnumRegister.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/FBinding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/FBinding.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/EFunctionInteract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/EFunctionInteract.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/EFunctionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/EFunctionType.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/FBindingFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/FBindingFunction.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/FBindingFunctionRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/FBindingFunctionRegister.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/FBindingMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/FBindingMethod.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/FBindingMethodRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/FBindingMethodRegister.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/FBindingSubscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/FBindingSubscript.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/FBindingSubscriptRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/FBindingSubscriptRegister.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/FFunctionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/FFunctionInfo.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/TDefaultArgument.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/TDefaultArgument.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/TDefaultArguments.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/TDefaultArguments.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/TFunctionInfo.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/TFunctionInfo.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Function/TFunctionInfoBuilder.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Function/TFunctionInfoBuilder.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Property/EBindingPropertyAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Property/EBindingPropertyAccess.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Property/EPropertyInteract.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | enum class EPropertyInteract 4 | { 5 | None, 6 | New 7 | }; 8 | -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Property/FBindingProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Property/FBindingProperty.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/Property/FBindingPropertyRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/Property/FBindingPropertyRegister.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/FBindingTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/FBindingTypeInfo.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/FBindingTypeInfoRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/FBindingTypeInfoRegister.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/FNameSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/FNameSpace.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/FTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/FTypeInfo.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/TGeneric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/TGeneric.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/TIsPrimitive.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/TIsPrimitive.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/TIsRef.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/TIsRef.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/TName.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/TName.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/TNameSpace.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/TNameSpace.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Binding/TypeInfo/TTypeInfo.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Binding/TypeInfo/TTypeInfo.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Bridge/EPropertyTypeExtent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Bridge/EPropertyTypeExtent.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Bridge/FTypeBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Bridge/FTypeBridge.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Bridge/FTypeBridge.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Bridge/FTypeBridge.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Common/FUnrealCSharpFunctionLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Common/FUnrealCSharpFunctionLibrary.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Common/NameEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Common/NameEncode.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/AccessPrivateMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/AccessPrivateMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/BindingMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/BindingMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/BufferMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/BufferMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/ClassAttributeMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/ClassAttributeMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/ClassMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/ClassMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/CompilerMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/CompilerMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/FunctionAttributeMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/FunctionAttributeMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/FunctionMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/FunctionMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/GenericAttributeMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/GenericAttributeMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/Macro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/MetaDataAttributeMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/MetaDataAttributeMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/MonoMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/MonoMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/NamespaceMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/NamespaceMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/PropertyAttributeMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/PropertyAttributeMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/CoreMacro/PropertyMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/CoreMacro/PropertyMacro.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Delegate/FUnrealCSharpCoreModuleDelegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Delegate/FUnrealCSharpCoreModuleDelegates.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Domain/AssemblyLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Domain/AssemblyLoader.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Domain/FMonoDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Domain/FMonoDomain.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Domain/FMonoDomain.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Domain/FMonoDomain.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Domain/FMonoDomainInitializeParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Domain/FMonoDomainInitializeParams.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Domain/FMonoDomainScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Domain/FMonoDomainScope.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Domain/FMonoObjectTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Domain/FMonoObjectTypes.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Domain/FMonoProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Domain/FMonoProfiler.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/DynamicBlueprintExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/DynamicBlueprintExtension.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/DynamicScriptStruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/DynamicScriptStruct.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/EDynamicClassGeneratorType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/EDynamicClassGeneratorType.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/EDynamicType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/EDynamicType.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/FDynamicBlueprintExtensionScope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/FDynamicBlueprintExtensionScope.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/FDynamicClassGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/FDynamicClassGenerator.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/FDynamicDependencyGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/FDynamicDependencyGraph.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/FDynamicEnumGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/FDynamicEnumGenerator.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/FDynamicGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/FDynamicGenerator.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/FDynamicGeneratorCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/FDynamicGeneratorCore.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/FDynamicInterfaceGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/FDynamicInterfaceGenerator.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Dynamic/FDynamicStructGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Dynamic/FDynamicStructGenerator.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Listener/FEngineListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Listener/FEngineListener.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Log/FMonoLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Log/FMonoLog.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Log/UnrealCSharpLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Log/UnrealCSharpLog.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Setting/UnrealCSharpEditorSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Setting/UnrealCSharpEditorSetting.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Setting/UnrealCSharpSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Setting/UnrealCSharpSetting.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TAccessPrivate.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TAccessPrivate.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TAccessPrivateStub.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TAccessPrivateStub.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TFieldIteratorExt.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TFieldIteratorExt.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TFunctionPointer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TFunctionPointer.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TGetArrayLength.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TGetArrayLength.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsNotUEnum.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsNotUEnum.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsReflectionClass.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsReflectionClass.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsScriptStruct.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsScriptStruct.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsTEnumAsByte.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsTEnumAsByte.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsTLazyObjectPtr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsTLazyObjectPtr.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsTOptional.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsTOptional.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsTScriptInterface.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsTScriptInterface.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsTSoftClassPtr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsTSoftClassPtr.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsTSoftObjectPtr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsTSoftObjectPtr.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsTWeakObjectPtr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsTWeakObjectPtr.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsUObject.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsUObject.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TIsUStruct.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TIsUStruct.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/Template/TTemplateTypeTraits.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/Template/TTemplateTypeTraits.inl -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/Public/UnrealCSharpCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/Public/UnrealCSharpCore.h -------------------------------------------------------------------------------- /Source/UnrealCSharpCore/UnrealCSharpCore.build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpCore/UnrealCSharpCore.build.cs -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/ContentBrowser/DynamicDataSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/ContentBrowser/DynamicDataSource.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/ContentBrowser/DynamicHierarchy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/ContentBrowser/DynamicHierarchy.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/Listener/FEditorListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/Listener/FEditorListener.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/NewClass/ClassCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/NewClass/ClassCollector.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/NewClass/DynamicNewClassInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/NewClass/DynamicNewClassInfo.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/NewClass/DynamicNewClassUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/NewClass/DynamicNewClassUtils.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/NewClass/SDynamicClassViewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/NewClass/SDynamicClassViewer.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/NewClass/SDynamicNewClassDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/NewClass/SDynamicNewClassDialog.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/ToolBar/UnrealCSharpBlueprintToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/ToolBar/UnrealCSharpBlueprintToolBar.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/ToolBar/UnrealCSharpPlayToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/ToolBar/UnrealCSharpPlayToolBar.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/UnrealCSharpEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/UnrealCSharpEditor.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/UnrealCSharpEditorCommands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/UnrealCSharpEditorCommands.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Private/UnrealCSharpEditorStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Private/UnrealCSharpEditorStyle.cpp -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/ContentBrowser/DynamicDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/ContentBrowser/DynamicDataSource.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/ContentBrowser/DynamicFileItemDataPayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/ContentBrowser/DynamicFileItemDataPayload.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/ContentBrowser/DynamicHierarchy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/ContentBrowser/DynamicHierarchy.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/ContentBrowser/DynamicNewClassContextMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/ContentBrowser/DynamicNewClassContextMenu.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/Listener/FEditorListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/Listener/FEditorListener.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/NewClass/ClassCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/NewClass/ClassCollector.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/NewClass/DynamicNewClassInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/NewClass/DynamicNewClassInfo.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/NewClass/DynamicNewClassUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/NewClass/DynamicNewClassUtils.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/NewClass/ProjectContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/NewClass/ProjectContent.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/NewClass/SDynamicClassViewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/NewClass/SDynamicClassViewer.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/NewClass/SDynamicNewClassDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/NewClass/SDynamicNewClassDialog.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/ToolBar/UnrealCSharpBlueprintToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/ToolBar/UnrealCSharpBlueprintToolBar.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/ToolBar/UnrealCSharpPlayToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/ToolBar/UnrealCSharpPlayToolBar.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/UnrealCSharpEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/UnrealCSharpEditor.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/UnrealCSharpEditorCommands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/UnrealCSharpEditorCommands.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/Public/UnrealCSharpEditorStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/Public/UnrealCSharpEditorStyle.h -------------------------------------------------------------------------------- /Source/UnrealCSharpEditor/UnrealCSharpEditor.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Source/UnrealCSharpEditor/UnrealCSharpEditor.Build.cs -------------------------------------------------------------------------------- /Template/Dynamic/DynamicActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Dynamic/DynamicActor.cs -------------------------------------------------------------------------------- /Template/Dynamic/DynamicActorComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Dynamic/DynamicActorComponent.cs -------------------------------------------------------------------------------- /Template/Dynamic/DynamicObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Dynamic/DynamicObject.cs -------------------------------------------------------------------------------- /Template/Dynamic/DynamicUserWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Dynamic/DynamicUserWidget.cs -------------------------------------------------------------------------------- /Template/Game.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Game.csproj -------------------------------------------------------------------------------- /Template/Game.csproj.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Game.csproj.props -------------------------------------------------------------------------------- /Template/Override/Actor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Override/Actor.cs -------------------------------------------------------------------------------- /Template/Override/ActorComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Override/ActorComponent.cs -------------------------------------------------------------------------------- /Template/Override/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Override/Object.cs -------------------------------------------------------------------------------- /Template/Override/UserWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Override/UserWidget.cs -------------------------------------------------------------------------------- /Template/Script.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/Script.sln -------------------------------------------------------------------------------- /Template/UE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/Template/UE.csproj -------------------------------------------------------------------------------- /UnrealCSharp.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crazytuzi/UnrealCSharp/HEAD/UnrealCSharp.uplugin --------------------------------------------------------------------------------